/home/runner/work/slang/slang/source/core/slang-list.h
Line | Count | Source (jump to first uncovered line) |
1 | | #ifndef SLANG_CORE_LIST_H |
2 | | #define SLANG_CORE_LIST_H |
3 | | |
4 | | #include "slang-allocator.h" |
5 | | #include "slang-array-view.h" |
6 | | #include "slang-math.h" |
7 | | #include "slang.h" |
8 | | |
9 | | #include <algorithm> |
10 | | #include <new> |
11 | | #include <type_traits> |
12 | | |
13 | | |
14 | | namespace Slang |
15 | | { |
16 | | // List is container of values of a type held consecutively in memory (much like std::vector) |
17 | | // |
18 | | // Note that in this implementation, the underlying memory is backed via an allocation of |
19 | | // T[capacity] This means that all values have to be in a valid state *even if they are not used* |
20 | | // (ie indices >= m_count must be valid) |
21 | | // |
22 | | // Also note this implementation does not necessarily 'initialize' an element which is no longer |
23 | | // used, and this may lead to surprising behavior. Say the list contains a single smart pointer, and |
24 | | // the last element is removed (say with removeLast). The smart pointer will *not* be released. The |
25 | | // smart pointer will be released if the that index is used (via say an add) or the List goes out of |
26 | | // scope. |
27 | | template<typename T, typename TAllocator = StandardAllocator> |
28 | | class List |
29 | | { |
30 | | private: |
31 | | static const Index kInitialCount = 16; |
32 | | |
33 | | public: |
34 | | typedef List ThisType; |
35 | | |
36 | | List() |
37 | 40.0M | : m_buffer(nullptr), m_count(0), m_capacity(0) |
38 | 40.0M | { |
39 | 40.0M | } _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 26 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 26 | { | 39 | 26 | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 441 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 441 | { | 39 | 441 | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.83k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.83k | { | 39 | 1.83k | } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.99k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.99k | { | 39 | 2.99k | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 27 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 27 | { | 39 | 27 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 27 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 27 | { | 39 | 27 | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 21.3k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 21.3k | { | 39 | 21.3k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7.40k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7.40k | { | 39 | 7.40k | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 26.3k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 26.3k | { | 39 | 26.3k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 189k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 189k | { | 39 | 189k | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 955k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 955k | { | 39 | 955k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 14.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 14.9k | { | 39 | 14.9k | } |
_ZN5Slang4ListImNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 24.6M | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 24.6M | { | 39 | 24.6M | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 71 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 71 | { | 39 | 71 | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 177k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 177k | { | 39 | 177k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 150k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 150k | { | 39 | 150k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.25k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.25k | { | 39 | 1.25k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 125k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 125k | { | 39 | 125k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 35.8k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 35.8k | { | 39 | 35.8k | } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 23 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 23 | { | 39 | 23 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 574k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 574k | { | 39 | 574k | } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 387 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 387 | { | 39 | 387 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7.49k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7.49k | { | 39 | 7.49k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 24.2k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 24.2k | { | 39 | 24.2k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.84k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.84k | { | 39 | 3.84k | } |
_ZN5Slang4ListIbNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 136 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 136 | { | 39 | 136 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6.67k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6.67k | { | 39 | 6.67k | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 19.5k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 19.5k | { | 39 | 19.5k | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 125k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 125k | { | 39 | 125k | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 51 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 51 | { | 39 | 51 | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 952 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 952 | { | 39 | 952 | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 704k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 704k | { | 39 | 704k | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6.39k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6.39k | { | 39 | 6.39k | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 23.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 23.9k | { | 39 | 23.9k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 209k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 209k | { | 39 | 209k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 603 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 603 | { | 39 | 603 | } |
_ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 4 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 4 | { | 39 | 4 | } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 408 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 408 | { | 39 | 408 | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6 | { | 39 | 6 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 382 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 382 | { | 39 | 382 | } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 408 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 408 | { | 39 | 408 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 161 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 161 | { | 39 | 161 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 84.8k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 84.8k | { | 39 | 84.8k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.93k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.93k | { | 39 | 1.93k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 693k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 693k | { | 39 | 693k | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.43k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.43k | { | 39 | 1.43k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 4.04k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 4.04k | { | 39 | 4.04k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 352 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 352 | { | 39 | 352 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.29k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.29k | { | 39 | 1.29k | } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 200 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 200 | { | 39 | 200 | } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.35k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.35k | { | 39 | 1.35k | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 169k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 169k | { | 39 | 169k | } |
_ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.07k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.07k | { | 39 | 2.07k | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 5.63k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 5.63k | { | 39 | 5.63k | } |
_ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 74 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 74 | { | 39 | 74 | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 45.8k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 45.8k | { | 39 | 45.8k | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 368 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 368 | { | 39 | 368 | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 368 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 368 | { | 39 | 368 | } |
_ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 368 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 368 | { | 39 | 368 | } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 37.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 37.0k | { | 39 | 37.0k | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 37.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 37.9k | { | 39 | 37.9k | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 24.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 24.0k | { | 39 | 24.0k | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 86 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 86 | { | 39 | 86 | } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 142 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 142 | { | 39 | 142 | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 96 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 96 | { | 39 | 96 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_EC2Ev Line | Count | Source | 37 | 82 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 82 | { | 39 | 82 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_EC2Ev Line | Count | Source | 37 | 82 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 82 | { | 39 | 82 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28.3k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28.3k | { | 39 | 28.3k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 162 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 162 | { | 39 | 162 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7.99M | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7.99M | { | 39 | 7.99M | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 64 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 64 | { | 39 | 64 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 20.4k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 20.4k | { | 39 | 20.4k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 4.72k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 4.72k | { | 39 | 4.72k | } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 4 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 4 | { | 39 | 4 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 139 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 139 | { | 39 | 139 | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 8.83k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 8.83k | { | 39 | 8.83k | } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 226 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 226 | { | 39 | 226 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 81 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 81 | { | 39 | 81 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 57 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 57 | { | 39 | 57 | } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3 | { | 39 | 3 | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 253 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 253 | { | 39 | 253 | } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.09k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.09k | { | 39 | 1.09k | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.24k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.24k | { | 39 | 1.24k | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 64 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 64 | { | 39 | 64 | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 5 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 5 | { | 39 | 5 | } |
_ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 5 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 5 | { | 39 | 5 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 417 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 417 | { | 39 | 417 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 320 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 320 | { | 39 | 320 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 13 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 13 | { | 39 | 13 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 500k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 500k | { | 39 | 500k | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 204k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 204k | { | 39 | 204k | } |
_ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 4 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 4 | { | 39 | 4 | } |
_ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 13 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 13 | { | 39 | 13 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 206 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 206 | { | 39 | 206 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 386 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 386 | { | 39 | 386 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_EC2Ev Line | Count | Source | 37 | 13 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 13 | { | 39 | 13 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 43.3k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 43.3k | { | 39 | 43.3k | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 13 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 13 | { | 39 | 13 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 785 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 785 | { | 39 | 785 | } |
_ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 26 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 26 | { | 39 | 26 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.00k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.00k | { | 39 | 1.00k | } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 284 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 284 | { | 39 | 284 | } |
_ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 71 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 71 | { | 39 | 71 | } |
_ZN5Slang4ListINS_17DiffTransposePass27PendingBlockTerminatorEntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 129 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 129 | { | 39 | 129 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 13 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 13 | { | 39 | 13 | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 530 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 530 | { | 39 | 530 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 497 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 497 | { | 39 | 497 | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 155 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 155 | { | 39 | 155 | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 95.8k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 95.8k | { | 39 | 95.8k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 111 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 111 | { | 39 | 111 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 64 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 64 | { | 39 | 64 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 16.2k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 16.2k | { | 39 | 16.2k | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 16.2k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 16.2k | { | 39 | 16.2k | } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.12k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.12k | { | 39 | 3.12k | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.92k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.92k | { | 39 | 2.92k | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 246 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 246 | { | 39 | 246 | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.71k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.71k | { | 39 | 1.71k | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 48 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 48 | { | 39 | 48 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 131 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 131 | { | 39 | 131 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 73 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 73 | { | 39 | 73 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42.9k | { | 39 | 42.9k | } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 211 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 211 | { | 39 | 211 | } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 44 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 44 | { | 39 | 44 | } |
slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 121 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 121 | { | 39 | 121 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 8.41k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 8.41k | { | 39 | 8.41k | } |
_ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 11 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 11 | { | 39 | 11 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 122 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 122 | { | 39 | 122 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 644 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 644 | { | 39 | 644 | } |
_ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 31 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 31 | { | 39 | 31 | } |
_ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 429 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 429 | { | 39 | 429 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 24 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 24 | { | 39 | 24 | } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 10 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 10 | { | 39 | 10 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 10 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 10 | { | 39 | 10 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 10 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 10 | { | 39 | 10 | } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 725 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 725 | { | 39 | 725 | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.21k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.21k | { | 39 | 1.21k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 263 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 263 | { | 39 | 263 | } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42.5k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42.5k | { | 39 | 42.5k | } |
_ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 239 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 239 | { | 39 | 239 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 524 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 524 | { | 39 | 524 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 237 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 237 | { | 39 | 237 | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 8.20k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 8.20k | { | 39 | 8.20k | } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 263 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 263 | { | 39 | 263 | } |
_ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6 | { | 39 | 6 | } |
_ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 23 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 23 | { | 39 | 23 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 51.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 51.0k | { | 39 | 51.0k | } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 157k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 157k | { | 39 | 157k | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 157k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 157k | { | 39 | 157k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 4.43k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 4.43k | { | 39 | 4.43k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.58k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.58k | { | 39 | 3.58k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 231 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 231 | { | 39 | 231 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6 | { | 39 | 6 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6 | { | 39 | 6 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 6 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 6 | { | 39 | 6 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 25 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 25 | { | 39 | 25 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 107 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 107 | { | 39 | 107 | } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 82 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 82 | { | 39 | 82 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 82 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 82 | { | 39 | 82 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 134 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 134 | { | 39 | 134 | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 480 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 480 | { | 39 | 480 | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 9.53k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 9.53k | { | 39 | 9.53k | } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 42.5k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 42.5k | { | 39 | 42.5k | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 16.6k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 16.6k | { | 39 | 16.6k | } |
_ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 162 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 162 | { | 39 | 162 | } |
_ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 37 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 37 | { | 39 | 37 | } |
slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 13 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 13 | { | 39 | 13 | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_EC2Ev Line | Count | Source | 37 | 949 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 949 | { | 39 | 949 | } |
_ZN5Slang4ListIPvNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 971k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 971k | { | 39 | 971k | } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 949 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 949 | { | 39 | 949 | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 949 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 949 | { | 39 | 949 | } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 98.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 98.0k | { | 39 | 98.0k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.63k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.63k | { | 39 | 1.63k | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 54 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 54 | { | 39 | 54 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 114 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 114 | { | 39 | 114 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 133 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 133 | { | 39 | 133 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 35 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 35 | { | 39 | 35 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 35 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 35 | { | 39 | 35 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 48 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 48 | { | 39 | 48 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 132 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 132 | { | 39 | 132 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 347 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 347 | { | 39 | 347 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 56 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 56 | { | 39 | 56 | } |
_ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 24 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 24 | { | 39 | 24 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 35 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 35 | { | 39 | 35 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 35 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 35 | { | 39 | 35 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 35 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 35 | { | 39 | 35 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 35 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 35 | { | 39 | 35 | } |
_ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 48 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 48 | { | 39 | 48 | } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 645 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 645 | { | 39 | 645 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 613 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 613 | { | 39 | 613 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 623 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 623 | { | 39 | 623 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 412 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 412 | { | 39 | 412 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 412 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 412 | { | 39 | 412 | } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 21.3k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 21.3k | { | 39 | 21.3k | } |
_ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 11.3k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 11.3k | { | 39 | 11.3k | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 669 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 669 | { | 39 | 669 | } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 414 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 414 | { | 39 | 414 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 251 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 251 | { | 39 | 251 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 251 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 251 | { | 39 | 251 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 251 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 251 | { | 39 | 251 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 251 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 251 | { | 39 | 251 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 54 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 54 | { | 39 | 54 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.49k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.49k | { | 39 | 1.49k | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 406 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 406 | { | 39 | 406 | } |
_ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 406 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 406 | { | 39 | 406 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 403 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 403 | { | 39 | 403 | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 18.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 18.0k | { | 39 | 18.0k | } |
_ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 403 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 403 | { | 39 | 403 | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 4.03k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 4.03k | { | 39 | 4.03k | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.14k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.14k | { | 39 | 1.14k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.20k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.20k | { | 39 | 3.20k | } |
_ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 10 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 10 | { | 39 | 10 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.49k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.49k | { | 39 | 2.49k | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.49k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.49k | { | 39 | 2.49k | } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.00k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.00k | { | 39 | 1.00k | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 306 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 306 | { | 39 | 306 | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 153 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 153 | { | 39 | 153 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 153 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 153 | { | 39 | 153 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 153 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 153 | { | 39 | 153 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 51 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 51 | { | 39 | 51 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 14 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 14 | { | 39 | 14 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3 | { | 39 | 3 | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 98 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 98 | { | 39 | 98 | } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 178k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 178k | { | 39 | 178k | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 5.24k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 5.24k | { | 39 | 5.24k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 117 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 117 | { | 39 | 117 | } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 48 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 48 | { | 39 | 48 | } |
_ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 48 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 48 | { | 39 | 48 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7 | { | 39 | 7 | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7 | { | 39 | 7 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 7 | { | 39 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 53 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 53 | { | 39 | 53 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 12.7k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 12.7k | { | 39 | 12.7k | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 387 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 387 | { | 39 | 387 | } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 387 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 387 | { | 39 | 387 | } |
_ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 387 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 387 | { | 39 | 387 | } |
_ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 387 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 387 | { | 39 | 387 | } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 387 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 387 | { | 39 | 387 | } |
_ZN5Slang4ListINS_6RefPtrINS_8IRModuleEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 387 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 387 | { | 39 | 387 | } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_EC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_EC2Ev Line | Count | Source | 37 | 96 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 96 | { | 39 | 96 | } |
_ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 463 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 463 | { | 39 | 463 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3 | { | 39 | 3 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1 | { | 39 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 417 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 417 | { | 39 | 417 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.29k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.29k | { | 39 | 3.29k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 172 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 172 | { | 39 | 172 | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.23k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.23k | { | 39 | 1.23k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 1.49k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 1.49k | { | 39 | 1.49k | } |
_ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2 | { | 39 | 2 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_EC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 28 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 28 | { | 39 | 28 | } |
_ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 344 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 344 | { | 39 | 344 | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 791 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 791 | { | 39 | 791 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 18.1k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 18.1k | { | 39 | 18.1k | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 10.9k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 10.9k | { | 39 | 10.9k | } |
_ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.03k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.03k | { | 39 | 3.03k | } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 2.40k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 2.40k | { | 39 | 2.40k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 83 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 83 | { | 39 | 83 | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 3.06k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 3.06k | { | 39 | 3.06k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEEC2Ev _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEEC2Ev Line | Count | Source | 37 | 12.7k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 38 | 12.7k | { | 39 | 12.7k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_24InstructionPrintingClassENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_11InstructionENS_17StandardAllocatorEEC2Ev Unexecuted instantiation: _ZN5Slang4ListINS_11OperandKindENS_17StandardAllocatorEEC2Ev |
40 | | template<typename... Args> |
41 | | List(const T& val, Args... args) |
42 | 6.01k | : m_buffer(nullptr), m_count(0), m_capacity(0) |
43 | 6.01k | { |
44 | 6.01k | _init(val, args...); |
45 | 6.01k | } _ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEEC2IJS1_EEERKS1_DpT_ Line | Count | Source | 42 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 3 | { | 44 | 3 | _init(val, args...); | 45 | 3 | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEC2IJEEERKS1_DpT_ Line | Count | Source | 42 | 2.34k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 2.34k | { | 44 | 2.34k | _init(val, args...); | 45 | 2.34k | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEEC2IJEEERKjDpT_ Line | Count | Source | 42 | 3.21k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 3.21k | { | 44 | 3.21k | _init(val, args...); | 45 | 3.21k | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEEC2IJjEEERKjDpT_ Line | Count | Source | 42 | 10 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 10 | { | 44 | 10 | _init(val, args...); | 45 | 10 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEC2IJS1_EEERKS1_DpT_ Line | Count | Source | 42 | 4 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 4 | { | 44 | 4 | _init(val, args...); | 45 | 4 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEC2IJS1_EEERKS1_DpT_ Line | Count | Source | 42 | 4 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 4 | { | 44 | 4 | _init(val, args...); | 45 | 4 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEC2IJEEERKS2_DpT_ Line | Count | Source | 42 | 78 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 78 | { | 44 | 78 | _init(val, args...); | 45 | 78 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEC2IJS2_EEERKS2_DpT_ Line | Count | Source | 42 | 62 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 62 | { | 44 | 62 | _init(val, args...); | 45 | 62 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJS2_S2_EEERKS2_DpT_ Line | Count | Source | 42 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 1 | { | 44 | 1 | _init(val, args...); | 45 | 1 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEEC2IJEEERKS1_DpT_ Line | Count | Source | 42 | 23 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 23 | { | 44 | 23 | _init(val, args...); | 45 | 23 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEC2IJS2_EEERKS2_DpT_ Line | Count | Source | 42 | 15 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 15 | { | 44 | 15 | _init(val, args...); | 45 | 15 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEC2IJEEERKS2_DpT_ Line | Count | Source | 42 | 93 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 93 | { | 44 | 93 | _init(val, args...); | 45 | 93 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJEEERKS2_DpT_ Line | Count | Source | 42 | 2 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 2 | { | 44 | 2 | _init(val, args...); | 45 | 2 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJEEERKS2_DpT_ Line | Count | Source | 42 | 15 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 15 | { | 44 | 15 | _init(val, args...); | 45 | 15 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJS2_EEERKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJPNS_7IRParamEEEERKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJPNS_15IRInterfaceTypeEEEERKS2_DpT_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJS2_EEERKS2_DpT_ Line | Count | Source | 42 | 151 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 151 | { | 44 | 151 | _init(val, args...); | 45 | 151 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJPNS_6IRTypeEPNS_11IRTupleTypeEEEERKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJPNS_9IRIntTypeEEEERKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJPNS_6IRFuncES2_S2_S2_S2_EEERKS2_DpT_ _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJPNS_17IRTargetTupleTypeEPNS_18IRNativeStringTypeES9_EEERKS2_DpT_ Line | Count | Source | 42 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 1 | { | 44 | 1 | _init(val, args...); | 45 | 1 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2IJS2_S2_S2_EEERKS2_DpT_ Line | Count | Source | 42 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 43 | 1 | { | 44 | 1 | _init(val, args...); | 45 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEC2IJPNS_17IRTargetTupleTypeEEEERKS2_DpT_ |
46 | | List(const List<T>& list) |
47 | 680k | : m_buffer(nullptr), m_count(0), m_capacity(0) |
48 | 680k | { |
49 | 680k | this->operator=(list); |
50 | 680k | } Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEEC2ERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEEC2ERKS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEEC2ERKS4_ _ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 14 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 14 | { | 49 | 14 | this->operator=(list); | 50 | 14 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 297k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 297k | { | 49 | 297k | this->operator=(list); | 50 | 297k | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 32.8k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 32.8k | { | 49 | 32.8k | this->operator=(list); | 50 | 32.8k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 9 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 9 | { | 49 | 9 | this->operator=(list); | 50 | 9 | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 172 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 172 | { | 49 | 172 | this->operator=(list); | 50 | 172 | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 1 | { | 49 | 1 | this->operator=(list); | 50 | 1 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 1 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 1 | { | 49 | 1 | this->operator=(list); | 50 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEEC2ERKS3_ _ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 2.98k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 2.98k | { | 49 | 2.98k | this->operator=(list); | 50 | 2.98k | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 3 | { | 49 | 3 | this->operator=(list); | 50 | 3 | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEEC2ERKS2_ Line | Count | Source | 47 | 244 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 244 | { | 49 | 244 | this->operator=(list); | 50 | 244 | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 3.03k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 3.03k | { | 49 | 3.03k | this->operator=(list); | 50 | 3.03k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEC2ERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEEC2ERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEEC2ERKS4_ _ZN5Slang4ListIjNS_17StandardAllocatorEEC2ERKS2_ Line | Count | Source | 47 | 2.22k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 2.22k | { | 49 | 2.22k | this->operator=(list); | 50 | 2.22k | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEEC2ERKS2_ Line | Count | Source | 47 | 188 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 188 | { | 49 | 188 | this->operator=(list); | 50 | 188 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 395 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 395 | { | 49 | 395 | this->operator=(list); | 50 | 395 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 304k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 304k | { | 49 | 304k | this->operator=(list); | 50 | 304k | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 23 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 23 | { | 49 | 23 | this->operator=(list); | 50 | 23 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 930 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 930 | { | 49 | 930 | this->operator=(list); | 50 | 930 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 22 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 22 | { | 49 | 22 | this->operator=(list); | 50 | 22 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEEC2ERKS4_ _ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 1.21k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 1.21k | { | 49 | 1.21k | this->operator=(list); | 50 | 1.21k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 148 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 148 | { | 49 | 148 | this->operator=(list); | 50 | 148 | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 214 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 214 | { | 49 | 214 | this->operator=(list); | 50 | 214 | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 3.58k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 3.58k | { | 49 | 3.58k | this->operator=(list); | 50 | 3.58k | } |
_ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 19.1k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 19.1k | { | 49 | 19.1k | this->operator=(list); | 50 | 19.1k | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 54 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 54 | { | 49 | 54 | this->operator=(list); | 50 | 54 | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEEC2ERKS5_ Line | Count | Source | 47 | 7 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 7 | { | 49 | 7 | this->operator=(list); | 50 | 7 | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 10.5k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 10.5k | { | 49 | 10.5k | this->operator=(list); | 50 | 10.5k | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 48 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 48 | { | 49 | 48 | this->operator=(list); | 50 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEEC2ERKS4_ _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEEC2ERKS5_ Line | Count | Source | 47 | 412 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 412 | { | 49 | 412 | this->operator=(list); | 50 | 412 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEEC2ERKS3_ _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEEC2ERKS4_ Line | Count | Source | 47 | 242 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 242 | { | 49 | 242 | this->operator=(list); | 50 | 242 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 245 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 245 | { | 49 | 245 | this->operator=(list); | 50 | 245 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEEC2ERKS5_ Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEEC2ERKS4_ _ZN5Slang4ListImNS_17StandardAllocatorEEC2ERKS2_ Line | Count | Source | 47 | 105 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 105 | { | 49 | 105 | this->operator=(list); | 50 | 105 | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEEC2ERKS3_ Line | Count | Source | 47 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 48 | 3 | { | 49 | 3 | this->operator=(list); | 50 | 3 | } |
|
51 | | List(List<T>&& list) |
52 | 50.7k | : m_buffer(nullptr), m_count(0), m_capacity(0) |
53 | 50.7k | { |
54 | 50.7k | this->operator=(static_cast<List<T>&&>(list)); |
55 | 50.7k | } _ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEC2EOS4_ Line | Count | Source | 52 | 3 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 3 | { | 54 | 3 | this->operator=(static_cast<List<T>&&>(list)); | 55 | 3 | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEC2EOS3_ Line | Count | Source | 52 | 30.0k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 30.0k | { | 54 | 30.0k | this->operator=(static_cast<List<T>&&>(list)); | 55 | 30.0k | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEC2EOS3_ Line | Count | Source | 52 | 17 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 17 | { | 54 | 17 | this->operator=(static_cast<List<T>&&>(list)); | 55 | 17 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEC2EOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEEC2EOS3_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEC2EOS4_ Line | Count | Source | 52 | 10.8k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 10.8k | { | 54 | 10.8k | this->operator=(static_cast<List<T>&&>(list)); | 55 | 10.8k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEC2EOS4_ _ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEEC2EOS3_ Line | Count | Source | 52 | 13 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 13 | { | 54 | 13 | this->operator=(static_cast<List<T>&&>(list)); | 55 | 13 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEEC2EOS4_ Line | Count | Source | 52 | 239 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 239 | { | 54 | 239 | this->operator=(static_cast<List<T>&&>(list)); | 55 | 239 | } |
_ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEEC2EOS4_ Line | Count | Source | 52 | 9.53k | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 9.53k | { | 54 | 9.53k | this->operator=(static_cast<List<T>&&>(list)); | 55 | 9.53k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEC2EOS4_ _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEEC2EOS4_ Line | Count | Source | 52 | 19 | : m_buffer(nullptr), m_count(0), m_capacity(0) | 53 | 19 | { | 54 | 19 | this->operator=(static_cast<List<T>&&>(list)); | 55 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEEC2EOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEC2EOS3_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEEC2EOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEEC2EOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEEC2EOS4_ |
56 | | List(ArrayView<T> view) |
57 | | : List() |
58 | | { |
59 | | addRange(view); |
60 | | } |
61 | | static List<T> makeRepeated(const T& val, Index count) |
62 | 452 | { |
63 | 452 | List<T> rs; |
64 | 452 | rs.setCount(count); |
65 | 1.81k | for (Index i = 0; i < count; i++) |
66 | 1.35k | rs[i] = val; |
67 | 452 | return rs; |
68 | 452 | } _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE12makeRepeatedERKS2_l Line | Count | Source | 62 | 450 | { | 63 | 450 | List<T> rs; | 64 | 450 | rs.setCount(count); | 65 | 1.80k | for (Index i = 0; i < count; i++) | 66 | 1.35k | rs[i] = val; | 67 | 450 | return rs; | 68 | 450 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE12makeRepeatedERKS2_l Line | Count | Source | 62 | 2 | { | 63 | 2 | List<T> rs; | 64 | 2 | rs.setCount(count); | 65 | 8 | for (Index i = 0; i < count; i++) | 66 | 6 | rs[i] = val; | 67 | 2 | return rs; | 68 | 2 | } |
|
69 | 37.4M | ~List() { _deallocateBuffer(); }_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 37.6k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 23 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.08k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.72k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 24 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 24 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 387 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIhNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 11.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListImNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 21.5M | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6.84k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIjNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 30.6k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 180k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 976k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 13.2k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 71 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 139k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 121k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.16k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 155k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 35.2k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 20 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 179 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 471k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 336 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7.49k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 24.1k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIbNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 136 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.84k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6.67k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 19.5k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 125k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 51 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 952 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 704k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6.03k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 320k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 209k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 603 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 4 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 408 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 15 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 382 | ~List() { _deallocateBuffer(); } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 408 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 84.8k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.94k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 693k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.38k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7.02k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 352 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.70k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 200 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.29k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 176k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 339 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.07k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIlNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 21.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 5.56k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 74 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 50.4k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 368 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 368 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 368 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 37.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 28 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 28 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.23k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 86 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 142 | ~List() { _deallocateBuffer(); } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 96 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_ED2Ev Line | Count | Source | 69 | 82 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 68 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_ED2Ev Line | Count | Source | 69 | 82 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 8.28M | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 162 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 28.4k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 49.1k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 4 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 139 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 5.12k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIcNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 8.83k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 223 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 81 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 4 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 60 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 253 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.03k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.13k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 25 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 61 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 5 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 417 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 5 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 4 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 320 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 13 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 500k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 204k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 4 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 13 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 251 | ~List() { _deallocateBuffer(); } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_ED2Ev Line | Count | Source | 69 | 13 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 386 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 43.3k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 13 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.71k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 26 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 497 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.33k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 284 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 71 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17DiffTransposePass27PendingBlockTerminatorEntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 129 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 13 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 543 | ~List() { _deallocateBuffer(); } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 155 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 95.8k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 111 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 64 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 16.2k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 16.2k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.92k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.12k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 480 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 246 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 48 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.71k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 73 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 131 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42.9k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 211 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 44 | ~List() { _deallocateBuffer(); } |
slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 121 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 8.41k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 11 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 122 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 644 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 31 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 429 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 24 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 10 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 10 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 10 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 725 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.21k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 263 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42.5k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 237 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 763 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 239 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 8.20k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 263 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 23 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 51.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 157k | ~List() { _deallocateBuffer(); } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 157k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 4.64k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7.16k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 231 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 6 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 25 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 107 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 82 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 82 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 134 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 9.53k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 42.5k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 16.6k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 162 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 37 | ~List() { _deallocateBuffer(); } |
slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 13 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPvNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 963k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_ED2Ev Line | Count | Source | 69 | 941 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 941 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 941 | ~List() { _deallocateBuffer(); } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 98.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.63k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 108 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 114 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 152 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 35 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 35 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 4 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 132 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 355 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 24 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 56 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 35 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 486 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 35 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 35 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 35 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 96 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEED2Ev Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 613 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 623 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 410 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 410 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 21.3k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 11.3k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 669 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 363 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.49k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 251 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 251 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 251 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 251 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 54 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.52k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 404 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 404 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 18.0k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 403 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.99k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1.13k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.17k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 403 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 10 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.49k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.49k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 272 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 306 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 153 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 153 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 153 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 51 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 14 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 94 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 178k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 117 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 5.24k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 44 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 48 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 7 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 53 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 11.7k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 336 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 336 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 336 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 336 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6RefPtrINS_8IRModuleEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 336 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_ED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_ED2Ev Line | Count | Source | 69 | 14 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 463 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 1 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 417 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.29k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 172 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 792 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEED2Ev _ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2 | ~List() { _deallocateBuffer(); } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_ED2Ev Line | Count | Source | 69 | 28 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 28 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 344 | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 18.1k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 10.9k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 83 | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.03k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 2.40k | ~List() { _deallocateBuffer(); } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 3.06k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEED2Ev _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEED2Ev Line | Count | Source | 69 | 11.7k | ~List() { _deallocateBuffer(); } |
Unexecuted instantiation: _ZN5Slang4ListINS_11InstructionENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_7OperandENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_24InstructionPrintingClassENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_11OperandKindENS_17StandardAllocatorEED2Ev Unexecuted instantiation: _ZN5Slang4ListINS_9EnumerantENS_17StandardAllocatorEED2Ev |
70 | | List<T>& operator=(const List<T>& list) |
71 | 13.7M | { |
72 | 13.7M | clearAndDeallocate(); |
73 | 13.7M | addRange(list); |
74 | 13.7M | return *this; |
75 | 13.7M | } _ZN5Slang4ListImNS_17StandardAllocatorEEaSERKS2_ Line | Count | Source | 71 | 13.0M | { | 72 | 13.0M | clearAndDeallocate(); | 73 | 13.0M | addRange(list); | 74 | 13.0M | return *this; | 75 | 13.0M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEEaSERKS2_ Line | Count | Source | 71 | 191 | { | 72 | 191 | clearAndDeallocate(); | 73 | 191 | addRange(list); | 74 | 191 | return *this; | 75 | 191 | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 42.0k | { | 72 | 42.0k | clearAndDeallocate(); | 73 | 42.0k | addRange(list); | 74 | 42.0k | return *this; | 75 | 42.0k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 20.6k | { | 72 | 20.6k | clearAndDeallocate(); | 73 | 20.6k | addRange(list); | 74 | 20.6k | return *this; | 75 | 20.6k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 3.13k | { | 72 | 3.13k | clearAndDeallocate(); | 73 | 3.13k | addRange(list); | 74 | 3.13k | return *this; | 75 | 3.13k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 4.82k | { | 72 | 4.82k | clearAndDeallocate(); | 73 | 4.82k | addRange(list); | 74 | 4.82k | return *this; | 75 | 4.82k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 5.46k | { | 72 | 5.46k | clearAndDeallocate(); | 73 | 5.46k | addRange(list); | 74 | 5.46k | return *this; | 75 | 5.46k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 304k | { | 72 | 304k | clearAndDeallocate(); | 73 | 304k | addRange(list); | 74 | 304k | return *this; | 75 | 304k | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEEaSERKS2_ Line | Count | Source | 71 | 247 | { | 72 | 247 | clearAndDeallocate(); | 73 | 247 | addRange(list); | 74 | 247 | return *this; | 75 | 247 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEEaSERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 8.34k | { | 72 | 8.34k | clearAndDeallocate(); | 73 | 8.34k | addRange(list); | 74 | 8.34k | return *this; | 75 | 8.34k | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 297k | { | 72 | 297k | clearAndDeallocate(); | 73 | 297k | addRange(list); | 74 | 297k | return *this; | 75 | 297k | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 33.2k | { | 72 | 33.2k | clearAndDeallocate(); | 73 | 33.2k | addRange(list); | 74 | 33.2k | return *this; | 75 | 33.2k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 9 | { | 72 | 9 | clearAndDeallocate(); | 73 | 9 | addRange(list); | 74 | 9 | return *this; | 75 | 9 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 30 | { | 72 | 30 | clearAndDeallocate(); | 73 | 30 | addRange(list); | 74 | 30 | return *this; | 75 | 30 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEEaSERKS3_ _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 3 | { | 72 | 3 | clearAndDeallocate(); | 73 | 3 | addRange(list); | 74 | 3 | return *this; | 75 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEaSERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEEaSERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListIjNS_17StandardAllocatorEEaSERKS2_ Line | Count | Source | 71 | 2.39k | { | 72 | 2.39k | clearAndDeallocate(); | 73 | 2.39k | addRange(list); | 74 | 2.39k | return *this; | 75 | 2.39k | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 4 | { | 72 | 4 | clearAndDeallocate(); | 73 | 4 | addRange(list); | 74 | 4 | return *this; | 75 | 4 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 4 | { | 72 | 4 | clearAndDeallocate(); | 73 | 4 | addRange(list); | 74 | 4 | return *this; | 75 | 4 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 626 | { | 72 | 626 | clearAndDeallocate(); | 73 | 626 | addRange(list); | 74 | 626 | return *this; | 75 | 626 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEEaSERKS5_ Line | Count | Source | 71 | 421 | { | 72 | 421 | clearAndDeallocate(); | 73 | 421 | addRange(list); | 74 | 421 | return *this; | 75 | 421 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 91 | { | 72 | 91 | clearAndDeallocate(); | 73 | 91 | addRange(list); | 74 | 91 | return *this; | 75 | 91 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 22 | { | 72 | 22 | clearAndDeallocate(); | 73 | 22 | addRange(list); | 74 | 22 | return *this; | 75 | 22 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 1.31k | { | 72 | 1.31k | clearAndDeallocate(); | 73 | 1.31k | addRange(list); | 74 | 1.31k | return *this; | 75 | 1.31k | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 1.22k | { | 72 | 1.22k | clearAndDeallocate(); | 73 | 1.22k | addRange(list); | 74 | 1.22k | return *this; | 75 | 1.22k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 148 | { | 72 | 148 | clearAndDeallocate(); | 73 | 148 | addRange(list); | 74 | 148 | return *this; | 75 | 148 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 214 | { | 72 | 214 | clearAndDeallocate(); | 73 | 214 | addRange(list); | 74 | 214 | return *this; | 75 | 214 | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 3.58k | { | 72 | 3.58k | clearAndDeallocate(); | 73 | 3.58k | addRange(list); | 74 | 3.58k | return *this; | 75 | 3.58k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 19.1k | { | 72 | 19.1k | clearAndDeallocate(); | 73 | 19.1k | addRange(list); | 74 | 19.1k | return *this; | 75 | 19.1k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 129 | { | 72 | 129 | clearAndDeallocate(); | 73 | 129 | addRange(list); | 74 | 129 | return *this; | 75 | 129 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 54 | { | 72 | 54 | clearAndDeallocate(); | 73 | 54 | addRange(list); | 74 | 54 | return *this; | 75 | 54 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 19 | { | 72 | 19 | clearAndDeallocate(); | 73 | 19 | addRange(list); | 74 | 19 | return *this; | 75 | 19 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 19 | { | 72 | 19 | clearAndDeallocate(); | 73 | 19 | addRange(list); | 74 | 19 | return *this; | 75 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEEaSERKS5_ Line | Count | Source | 71 | 7 | { | 72 | 7 | clearAndDeallocate(); | 73 | 7 | addRange(list); | 74 | 7 | return *this; | 75 | 7 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 48 | { | 72 | 48 | clearAndDeallocate(); | 73 | 48 | addRange(list); | 74 | 48 | return *this; | 75 | 48 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 48 | { | 72 | 48 | clearAndDeallocate(); | 73 | 48 | addRange(list); | 74 | 48 | return *this; | 75 | 48 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 48 | { | 72 | 48 | clearAndDeallocate(); | 73 | 48 | addRange(list); | 74 | 48 | return *this; | 75 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 7 | { | 72 | 7 | clearAndDeallocate(); | 73 | 7 | addRange(list); | 74 | 7 | return *this; | 75 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEEaSERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 215 | { | 72 | 215 | clearAndDeallocate(); | 73 | 215 | addRange(list); | 74 | 215 | return *this; | 75 | 215 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 15 | { | 72 | 15 | clearAndDeallocate(); | 73 | 15 | addRange(list); | 74 | 15 | return *this; | 75 | 15 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 10 | { | 72 | 10 | clearAndDeallocate(); | 73 | 10 | addRange(list); | 74 | 10 | return *this; | 75 | 10 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEEaSERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 242 | { | 72 | 242 | clearAndDeallocate(); | 73 | 242 | addRange(list); | 74 | 242 | return *this; | 75 | 242 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 661 | { | 72 | 661 | clearAndDeallocate(); | 73 | 661 | addRange(list); | 74 | 661 | return *this; | 75 | 661 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEEaSERKS5_ _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 208 | { | 72 | 208 | clearAndDeallocate(); | 73 | 208 | addRange(list); | 74 | 208 | return *this; | 75 | 208 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEEaSERKS4_ Line | Count | Source | 71 | 14 | { | 72 | 14 | clearAndDeallocate(); | 73 | 14 | addRange(list); | 74 | 14 | return *this; | 75 | 14 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEEaSERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEEaSERKS4_ _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEEaSERKS3_ Line | Count | Source | 71 | 3 | { | 72 | 3 | clearAndDeallocate(); | 73 | 3 | addRange(list); | 74 | 3 | return *this; | 75 | 3 | } |
|
76 | | |
77 | | List<T>& operator=(List<T>&& list) |
78 | 2.83M | { |
79 | | // Could just do a swap here, and memory would be freed on rhs dtor |
80 | | |
81 | 2.83M | _deallocateBuffer(); |
82 | 2.83M | m_count = list.m_count; |
83 | 2.83M | m_capacity = list.m_capacity; |
84 | 2.83M | m_buffer = list.m_buffer; |
85 | | |
86 | 2.83M | list.m_buffer = nullptr; |
87 | 2.83M | list.m_count = 0; |
88 | 2.83M | list.m_capacity = 0; |
89 | 2.83M | return *this; |
90 | 2.83M | } _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 15.2k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 15.2k | _deallocateBuffer(); | 82 | 15.2k | m_count = list.m_count; | 83 | 15.2k | m_capacity = list.m_capacity; | 84 | 15.2k | m_buffer = list.m_buffer; | 85 | | | 86 | 15.2k | list.m_buffer = nullptr; | 87 | 15.2k | list.m_count = 0; | 88 | 15.2k | list.m_capacity = 0; | 89 | 15.2k | return *this; | 90 | 15.2k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 28.3k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 28.3k | _deallocateBuffer(); | 82 | 28.3k | m_count = list.m_count; | 83 | 28.3k | m_capacity = list.m_capacity; | 84 | 28.3k | m_buffer = list.m_buffer; | 85 | | | 86 | 28.3k | list.m_buffer = nullptr; | 87 | 28.3k | list.m_count = 0; | 88 | 28.3k | list.m_capacity = 0; | 89 | 28.3k | return *this; | 90 | 28.3k | } |
Unexecuted instantiation: _ZN5Slang4ListIPvNS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 11.3k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 11.3k | _deallocateBuffer(); | 82 | 11.3k | m_count = list.m_count; | 83 | 11.3k | m_capacity = list.m_capacity; | 84 | 11.3k | m_buffer = list.m_buffer; | 85 | | | 86 | 11.3k | list.m_buffer = nullptr; | 87 | 11.3k | list.m_count = 0; | 88 | 11.3k | list.m_capacity = 0; | 89 | 11.3k | return *this; | 90 | 11.3k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 44 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 44 | _deallocateBuffer(); | 82 | 44 | m_count = list.m_count; | 83 | 44 | m_capacity = list.m_capacity; | 84 | 44 | m_buffer = list.m_buffer; | 85 | | | 86 | 44 | list.m_buffer = nullptr; | 87 | 44 | list.m_count = 0; | 88 | 44 | list.m_capacity = 0; | 89 | 44 | return *this; | 90 | 44 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 57 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 57 | _deallocateBuffer(); | 82 | 57 | m_count = list.m_count; | 83 | 57 | m_capacity = list.m_capacity; | 84 | 57 | m_buffer = list.m_buffer; | 85 | | | 86 | 57 | list.m_buffer = nullptr; | 87 | 57 | list.m_count = 0; | 88 | 57 | list.m_capacity = 0; | 89 | 57 | return *this; | 90 | 57 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 61.4k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 61.4k | _deallocateBuffer(); | 82 | 61.4k | m_count = list.m_count; | 83 | 61.4k | m_capacity = list.m_capacity; | 84 | 61.4k | m_buffer = list.m_buffer; | 85 | | | 86 | 61.4k | list.m_buffer = nullptr; | 87 | 61.4k | list.m_count = 0; | 88 | 61.4k | list.m_capacity = 0; | 89 | 61.4k | return *this; | 90 | 61.4k | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 416 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 416 | _deallocateBuffer(); | 82 | 416 | m_count = list.m_count; | 83 | 416 | m_capacity = list.m_capacity; | 84 | 416 | m_buffer = list.m_buffer; | 85 | | | 86 | 416 | list.m_buffer = nullptr; | 87 | 416 | list.m_count = 0; | 88 | 416 | list.m_capacity = 0; | 89 | 416 | return *this; | 90 | 416 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 2.13k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 2.13k | _deallocateBuffer(); | 82 | 2.13k | m_count = list.m_count; | 83 | 2.13k | m_capacity = list.m_capacity; | 84 | 2.13k | m_buffer = list.m_buffer; | 85 | | | 86 | 2.13k | list.m_buffer = nullptr; | 87 | 2.13k | list.m_count = 0; | 88 | 2.13k | list.m_capacity = 0; | 89 | 2.13k | return *this; | 90 | 2.13k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 3.19k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 3.19k | _deallocateBuffer(); | 82 | 3.19k | m_count = list.m_count; | 83 | 3.19k | m_capacity = list.m_capacity; | 84 | 3.19k | m_buffer = list.m_buffer; | 85 | | | 86 | 3.19k | list.m_buffer = nullptr; | 87 | 3.19k | list.m_count = 0; | 88 | 3.19k | list.m_capacity = 0; | 89 | 3.19k | return *this; | 90 | 3.19k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEEaSEOS5_ Unexecuted instantiation: _ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 17 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 17 | _deallocateBuffer(); | 82 | 17 | m_count = list.m_count; | 83 | 17 | m_capacity = list.m_capacity; | 84 | 17 | m_buffer = list.m_buffer; | 85 | | | 86 | 17 | list.m_buffer = nullptr; | 87 | 17 | list.m_count = 0; | 88 | 17 | list.m_capacity = 0; | 89 | 17 | return *this; | 90 | 17 | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 618 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 618 | _deallocateBuffer(); | 82 | 618 | m_count = list.m_count; | 83 | 618 | m_capacity = list.m_capacity; | 84 | 618 | m_buffer = list.m_buffer; | 85 | | | 86 | 618 | list.m_buffer = nullptr; | 87 | 618 | list.m_count = 0; | 88 | 618 | list.m_capacity = 0; | 89 | 618 | return *this; | 90 | 618 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListIjNS_17StandardAllocatorEEaSEOS2_ Line | Count | Source | 78 | 1.48k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 1.48k | _deallocateBuffer(); | 82 | 1.48k | m_count = list.m_count; | 83 | 1.48k | m_capacity = list.m_capacity; | 84 | 1.48k | m_buffer = list.m_buffer; | 85 | | | 86 | 1.48k | list.m_buffer = nullptr; | 87 | 1.48k | list.m_count = 0; | 88 | 1.48k | list.m_capacity = 0; | 89 | 1.48k | return *this; | 90 | 1.48k | } |
Unexecuted instantiation: _ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEaSEOS3_ Unexecuted instantiation: _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEaSEOS3_ Unexecuted instantiation: _ZN5Slang4ListIhNS_17StandardAllocatorEEaSEOS2_ _ZN5Slang4ListIlNS_17StandardAllocatorEEaSEOS2_ Line | Count | Source | 78 | 3.64k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 3.64k | _deallocateBuffer(); | 82 | 3.64k | m_count = list.m_count; | 83 | 3.64k | m_capacity = list.m_capacity; | 84 | 3.64k | m_buffer = list.m_buffer; | 85 | | | 86 | 3.64k | list.m_buffer = nullptr; | 87 | 3.64k | list.m_count = 0; | 88 | 3.64k | list.m_capacity = 0; | 89 | 3.64k | return *this; | 90 | 3.64k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 231 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 231 | _deallocateBuffer(); | 82 | 231 | m_count = list.m_count; | 83 | 231 | m_capacity = list.m_capacity; | 84 | 231 | m_buffer = list.m_buffer; | 85 | | | 86 | 231 | list.m_buffer = nullptr; | 87 | 231 | list.m_count = 0; | 88 | 231 | list.m_capacity = 0; | 89 | 231 | return *this; | 90 | 231 | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEEaSEOS5_ Line | Count | Source | 78 | 24 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 24 | _deallocateBuffer(); | 82 | 24 | m_count = list.m_count; | 83 | 24 | m_capacity = list.m_capacity; | 84 | 24 | m_buffer = list.m_buffer; | 85 | | | 86 | 24 | list.m_buffer = nullptr; | 87 | 24 | list.m_count = 0; | 88 | 24 | list.m_capacity = 0; | 89 | 24 | return *this; | 90 | 24 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 27.7k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 27.7k | _deallocateBuffer(); | 82 | 27.7k | m_count = list.m_count; | 83 | 27.7k | m_capacity = list.m_capacity; | 84 | 27.7k | m_buffer = list.m_buffer; | 85 | | | 86 | 27.7k | list.m_buffer = nullptr; | 87 | 27.7k | list.m_count = 0; | 88 | 27.7k | list.m_capacity = 0; | 89 | 27.7k | return *this; | 90 | 27.7k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 46 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 46 | _deallocateBuffer(); | 82 | 46 | m_count = list.m_count; | 83 | 46 | m_capacity = list.m_capacity; | 84 | 46 | m_buffer = list.m_buffer; | 85 | | | 86 | 46 | list.m_buffer = nullptr; | 87 | 46 | list.m_count = 0; | 88 | 46 | list.m_capacity = 0; | 89 | 46 | return *this; | 90 | 46 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 13 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 13 | _deallocateBuffer(); | 82 | 13 | m_count = list.m_count; | 83 | 13 | m_capacity = list.m_capacity; | 84 | 13 | m_buffer = list.m_buffer; | 85 | | | 86 | 13 | list.m_buffer = nullptr; | 87 | 13 | list.m_count = 0; | 88 | 13 | list.m_capacity = 0; | 89 | 13 | return *this; | 90 | 13 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 340 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 340 | _deallocateBuffer(); | 82 | 340 | m_count = list.m_count; | 83 | 340 | m_capacity = list.m_capacity; | 84 | 340 | m_buffer = list.m_buffer; | 85 | | | 86 | 340 | list.m_buffer = nullptr; | 87 | 340 | list.m_count = 0; | 88 | 340 | list.m_capacity = 0; | 89 | 340 | return *this; | 90 | 340 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 13 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 13 | _deallocateBuffer(); | 82 | 13 | m_count = list.m_count; | 83 | 13 | m_capacity = list.m_capacity; | 84 | 13 | m_buffer = list.m_buffer; | 85 | | | 86 | 13 | list.m_buffer = nullptr; | 87 | 13 | list.m_count = 0; | 88 | 13 | list.m_capacity = 0; | 89 | 13 | return *this; | 90 | 13 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 231 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 231 | _deallocateBuffer(); | 82 | 231 | m_count = list.m_count; | 83 | 231 | m_capacity = list.m_capacity; | 84 | 231 | m_buffer = list.m_buffer; | 85 | | | 86 | 231 | list.m_buffer = nullptr; | 87 | 231 | list.m_count = 0; | 88 | 231 | list.m_capacity = 0; | 89 | 231 | return *this; | 90 | 231 | } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEEaSEOS5_ Line | Count | Source | 78 | 231 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 231 | _deallocateBuffer(); | 82 | 231 | m_count = list.m_count; | 83 | 231 | m_capacity = list.m_capacity; | 84 | 231 | m_buffer = list.m_buffer; | 85 | | | 86 | 231 | list.m_buffer = nullptr; | 87 | 231 | list.m_count = 0; | 88 | 231 | list.m_capacity = 0; | 89 | 231 | return *this; | 90 | 231 | } |
_ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 9.53k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 9.53k | _deallocateBuffer(); | 82 | 9.53k | m_count = list.m_count; | 83 | 9.53k | m_capacity = list.m_capacity; | 84 | 9.53k | m_buffer = list.m_buffer; | 85 | | | 86 | 9.53k | list.m_buffer = nullptr; | 87 | 9.53k | list.m_count = 0; | 88 | 9.53k | list.m_capacity = 0; | 89 | 9.53k | return *this; | 90 | 9.53k | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 239 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 239 | _deallocateBuffer(); | 82 | 239 | m_count = list.m_count; | 83 | 239 | m_capacity = list.m_capacity; | 84 | 239 | m_buffer = list.m_buffer; | 85 | | | 86 | 239 | list.m_buffer = nullptr; | 87 | 239 | list.m_count = 0; | 88 | 239 | list.m_capacity = 0; | 89 | 239 | return *this; | 90 | 239 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 375 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 375 | _deallocateBuffer(); | 82 | 375 | m_count = list.m_count; | 83 | 375 | m_capacity = list.m_capacity; | 84 | 375 | m_buffer = list.m_buffer; | 85 | | | 86 | 375 | list.m_buffer = nullptr; | 87 | 375 | list.m_count = 0; | 88 | 375 | list.m_capacity = 0; | 89 | 375 | return *this; | 90 | 375 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEEaSEOS5_ Line | Count | Source | 78 | 320 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 320 | _deallocateBuffer(); | 82 | 320 | m_count = list.m_count; | 83 | 320 | m_capacity = list.m_capacity; | 84 | 320 | m_buffer = list.m_buffer; | 85 | | | 86 | 320 | list.m_buffer = nullptr; | 87 | 320 | list.m_count = 0; | 88 | 320 | list.m_capacity = 0; | 89 | 320 | return *this; | 90 | 320 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 15 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 15 | _deallocateBuffer(); | 82 | 15 | m_count = list.m_count; | 83 | 15 | m_capacity = list.m_capacity; | 84 | 15 | m_buffer = list.m_buffer; | 85 | | | 86 | 15 | list.m_buffer = nullptr; | 87 | 15 | list.m_count = 0; | 88 | 15 | list.m_capacity = 0; | 89 | 15 | return *this; | 90 | 15 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEEaSEOS3_ Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 19 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 19 | _deallocateBuffer(); | 82 | 19 | m_count = list.m_count; | 83 | 19 | m_capacity = list.m_capacity; | 84 | 19 | m_buffer = list.m_buffer; | 85 | | | 86 | 19 | list.m_buffer = nullptr; | 87 | 19 | list.m_count = 0; | 88 | 19 | list.m_capacity = 0; | 89 | 19 | return *this; | 90 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 16 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 16 | _deallocateBuffer(); | 82 | 16 | m_count = list.m_count; | 83 | 16 | m_capacity = list.m_capacity; | 84 | 16 | m_buffer = list.m_buffer; | 85 | | | 86 | 16 | list.m_buffer = nullptr; | 87 | 16 | list.m_count = 0; | 88 | 16 | list.m_capacity = 0; | 89 | 16 | return *this; | 90 | 16 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 212 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 212 | _deallocateBuffer(); | 82 | 212 | m_count = list.m_count; | 83 | 212 | m_capacity = list.m_capacity; | 84 | 212 | m_buffer = list.m_buffer; | 85 | | | 86 | 212 | list.m_buffer = nullptr; | 87 | 212 | list.m_count = 0; | 88 | 212 | list.m_capacity = 0; | 89 | 212 | return *this; | 90 | 212 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPKcNS_17StandardAllocatorEEaSEOS4_ _ZN5Slang4ListImNS_17StandardAllocatorEEaSEOS2_ Line | Count | Source | 78 | 2.66M | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 2.66M | _deallocateBuffer(); | 82 | 2.66M | m_count = list.m_count; | 83 | 2.66M | m_capacity = list.m_capacity; | 84 | 2.66M | m_buffer = list.m_buffer; | 85 | | | 86 | 2.66M | list.m_buffer = nullptr; | 87 | 2.66M | list.m_count = 0; | 88 | 2.66M | list.m_capacity = 0; | 89 | 2.66M | return *this; | 90 | 2.66M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEEaSEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEEaSEOS3_ _ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEEaSEOS4_ Line | Count | Source | 78 | 617 | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 617 | _deallocateBuffer(); | 82 | 617 | m_count = list.m_count; | 83 | 617 | m_capacity = list.m_capacity; | 84 | 617 | m_buffer = list.m_buffer; | 85 | | | 86 | 617 | list.m_buffer = nullptr; | 87 | 617 | list.m_count = 0; | 88 | 617 | list.m_capacity = 0; | 89 | 617 | return *this; | 90 | 617 | } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEEaSEOS3_ Line | Count | Source | 78 | 5.35k | { | 79 | | // Could just do a swap here, and memory would be freed on rhs dtor | 80 | | | 81 | 5.35k | _deallocateBuffer(); | 82 | 5.35k | m_count = list.m_count; | 83 | 5.35k | m_capacity = list.m_capacity; | 84 | 5.35k | m_buffer = list.m_buffer; | 85 | | | 86 | 5.35k | list.m_buffer = nullptr; | 87 | 5.35k | list.m_count = 0; | 88 | 5.35k | list.m_capacity = 0; | 89 | 5.35k | return *this; | 90 | 5.35k | } |
|
91 | | |
92 | 5.30M | const T* begin() const { return m_buffer; }Unexecuted instantiation: _ZNK5Slang4ListImNS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 4 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 33.9k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 926 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 5.00M | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 4.81k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 3 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 996 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 99 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 12.0k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 425 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 138 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 2.85k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 12.0k | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListIlNS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 235 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 2.61k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 3 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 1 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 142 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIjNS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 4.53k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 155 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 162 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 44 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 4 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 195 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 13 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 61 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 6 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 321 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 2 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 4 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 33 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 23.1k | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 824 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 11.3k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 263 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 401 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 305 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 178k | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListIcNS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE5beginEv _ZNK5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 3.22k | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 344 | const T* begin() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE5beginEv Line | Count | Source | 92 | 380 | const T* begin() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_9EnumerantENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZNK5Slang4ListINS_7OperandENS_17StandardAllocatorEE5beginEv |
93 | 11.4M | const T* end() const { return m_buffer + m_count; }Unexecuted instantiation: _ZNK5Slang4ListImNS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 33.9k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 926 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 11.1M | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 3 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 996 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 99 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 12.0k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 425 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 138 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 2.85k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 12.0k | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListIlNS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 235 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 2.61k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 3 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 1 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 4.81k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 142 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIjNS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 4.53k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 155 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 162 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 44 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 4 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 195 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 13 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 61 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 6 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 321 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 2 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 4 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 33 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 23.1k | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 824 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 11.3k | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 263 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 401 | const T* end() const { return m_buffer + m_count; } |
_ZNK5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 305 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 178k | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 3.22k | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE3endEv _ZNK5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE3endEv Line | Count | Source | 93 | 380 | const T* end() const { return m_buffer + m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListINS_9EnumerantENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZNK5Slang4ListINS_7OperandENS_17StandardAllocatorEE3endEv |
94 | | |
95 | 8.42M | T* begin() { return m_buffer; }_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4.73M | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.82M | T* begin() { return m_buffer; } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 331k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 21.5k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 6.34k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 336 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 7.49k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 61.4k | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 8 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 218 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 104 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 19.5k | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 274k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 452 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 111 | T* begin() { return m_buffer; } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 5 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 298k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 603 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 396 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 411 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 408 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 879 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 349 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.59k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3.83k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 12 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 84.8k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 209k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2.03k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.27k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 255 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 203 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 24.9k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4.70k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 62 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 8.47k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4.04k | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 83 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 36 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 195 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 187 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E5beginEv Line | Count | Source | 95 | 82 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E5beginEv Line | Count | Source | 95 | 82 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 304 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 542 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 45 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 320 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 174k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2.79k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 204 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2.76k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 386 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 184 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 284 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 13 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 26 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 163 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 95.8k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 111 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListImNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 115 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 152 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 64 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 6.34k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 7 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3.44k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3.07k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 48 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 234 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 176 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 42.2k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 218 | T* begin() { return m_buffer; } |
slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 5 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 121 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 8.41k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 11 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 155 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 95 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 10 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 10 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 10 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 13 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 36 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 9.22k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 263 | T* begin() { return m_buffer; } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 846 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 478 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 524 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 8.20k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 263 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 6 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 357 | T* begin() { return m_buffer; } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.44k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 215 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 66 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 231 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 6 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 5 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 82 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 82 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 42.5k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 18.8k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 24.0k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 162 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 37 | T* begin() { return m_buffer; } |
slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 13 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.54k | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 7 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 29 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 7 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 24 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 48 | T* begin() { return m_buffer; } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 356 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 10 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4.71k | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 22.1k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2.79k | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 251 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 997 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 857 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 501 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 1.49k | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 41 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 10 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 208 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 509 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 682 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 14 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 3 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 30 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 20 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 24 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 7 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 4 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 48 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 48 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 48 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 48 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 48 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 50 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 27 | T* begin() { return m_buffer; } |
_ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 999 | T* begin() { return m_buffer; } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E5beginEv Line | Count | Source | 95 | 28 | T* begin() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_11OperandKindENS_17StandardAllocatorEE5beginEv Unexecuted instantiation: _ZN5Slang4ListINS_11InstructionENS_17StandardAllocatorEE5beginEv _ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE5beginEv Line | Count | Source | 95 | 2 | T* begin() { return m_buffer; } |
|
96 | 8.10M | T* end() { return m_buffer + m_count; }_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4.73M | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.82M | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 21.5k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 6.34k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 336 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 7.49k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 61.4k | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 8 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 218 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 104 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 19.5k | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 274k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 452 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 111 | T* end() { return m_buffer + m_count; } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 5 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 298k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 603 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 396 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 411 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 408 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 879 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 349 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.59k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3.83k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 12 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 84.8k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 209k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2.03k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.27k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 255 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 203 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 24.9k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4.70k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 62 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 8.43k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4.04k | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 83 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 36 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 195 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 187 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E3endEv Line | Count | Source | 96 | 82 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E3endEv Line | Count | Source | 96 | 82 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 304 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 542 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 45 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 320 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 174k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2.79k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 204 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2.76k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 386 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 184 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 284 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 13 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 26 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 163 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 95.8k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 111 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE3endEv _ZN5Slang4ListImNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 115 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 152 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 64 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 6.34k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 7 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3.44k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3.07k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 48 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 234 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 176 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 42.2k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 218 | T* end() { return m_buffer + m_count; } |
slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 5 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 121 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 8.41k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 11 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 155 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 95 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 10 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 10 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 10 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 13 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 36 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 9.22k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 263 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE3endEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 846 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 478 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 524 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 8.20k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 263 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 6 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 357 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE3endEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.44k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 215 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 66 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 231 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 6 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 5 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 82 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 82 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 42.5k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 18.8k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 24.0k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 162 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 37 | T* end() { return m_buffer + m_count; } |
slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 13 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.54k | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 7 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 29 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 7 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 24 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 48 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 356 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 10 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE3endEv _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4.71k | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 22.1k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2.79k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 251 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 997 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 857 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 501 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 1.49k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 41 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 10 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 208 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 509 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 682 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 14 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 3 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 30 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 14 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 24 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 7 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 4 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 10.0k | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 48 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 50 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 27 | T* end() { return m_buffer + m_count; } |
_ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIcNS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 999 | T* end() { return m_buffer + m_count; } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E3endEv Line | Count | Source | 96 | 28 | T* end() { return m_buffer + m_count; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_11OperandKindENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_11InstructionENS_17StandardAllocatorEE3endEv Unexecuted instantiation: _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE3endEv _ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE3endEv Line | Count | Source | 96 | 2 | T* end() { return m_buffer + m_count; } |
|
97 | | |
98 | | const T& getFirst() const |
99 | 15 | { |
100 | 15 | SLANG_ASSERT(m_count > 0); |
101 | 15 | return m_buffer[0]; |
102 | 15 | } Unexecuted instantiation: _ZNK5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE8getFirstEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8getFirstEv _ZNK5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 99 | 15 | { | 100 | 15 | SLANG_ASSERT(m_count > 0); | 101 | 15 | return m_buffer[0]; | 102 | 15 | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE8getFirstEv Unexecuted instantiation: _ZNK5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE8getFirstEv |
103 | | |
104 | | T& getFirst() |
105 | 207k | { |
106 | 207k | SLANG_ASSERT(m_count > 0); |
107 | 207k | return m_buffer[0]; |
108 | 207k | } _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 13 | { | 106 | 13 | SLANG_ASSERT(m_count > 0); | 107 | 13 | return m_buffer[0]; | 108 | 13 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 23 | { | 106 | 23 | SLANG_ASSERT(m_count > 0); | 107 | 23 | return m_buffer[0]; | 108 | 23 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 14 | { | 106 | 14 | SLANG_ASSERT(m_count > 0); | 107 | 14 | return m_buffer[0]; | 108 | 14 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 207k | { | 106 | 207k | SLANG_ASSERT(m_count > 0); | 107 | 207k | return m_buffer[0]; | 108 | 207k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 20 | { | 106 | 20 | SLANG_ASSERT(m_count > 0); | 107 | 20 | return m_buffer[0]; | 108 | 20 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE8getFirstEv _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE8getFirstEv Line | Count | Source | 105 | 233 | { | 106 | 233 | SLANG_ASSERT(m_count > 0); | 107 | 233 | return m_buffer[0]; | 108 | 233 | } |
|
109 | | |
110 | | const T& getLast() const |
111 | 15 | { |
112 | 15 | SLANG_ASSERT(m_count > 0); |
113 | 15 | return m_buffer[m_count - 1]; |
114 | 15 | } Unexecuted instantiation: _ZNK5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE7getLastEv _ZNK5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 111 | 15 | { | 112 | 15 | SLANG_ASSERT(m_count > 0); | 113 | 15 | return m_buffer[m_count - 1]; | 114 | 15 | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE7getLastEv |
115 | | |
116 | | T& getLast() |
117 | 24.4M | { |
118 | 24.4M | SLANG_ASSERT(m_count > 0); |
119 | 24.4M | return m_buffer[m_count - 1]; |
120 | 24.4M | } _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 23.0M | { | 118 | 23.0M | SLANG_ASSERT(m_count > 0); | 119 | 23.0M | return m_buffer[m_count - 1]; | 120 | 23.0M | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 2.87k | { | 118 | 2.87k | SLANG_ASSERT(m_count > 0); | 119 | 2.87k | return m_buffer[m_count - 1]; | 120 | 2.87k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 1.97k | { | 118 | 1.97k | SLANG_ASSERT(m_count > 0); | 119 | 1.97k | return m_buffer[m_count - 1]; | 120 | 1.97k | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 222 | { | 118 | 222 | SLANG_ASSERT(m_count > 0); | 119 | 222 | return m_buffer[m_count - 1]; | 120 | 222 | } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 2 | { | 118 | 2 | SLANG_ASSERT(m_count > 0); | 119 | 2 | return m_buffer[m_count - 1]; | 120 | 2 | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 21.0k | { | 118 | 21.0k | SLANG_ASSERT(m_count > 0); | 119 | 21.0k | return m_buffer[m_count - 1]; | 120 | 21.0k | } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 4 | { | 118 | 4 | SLANG_ASSERT(m_count > 0); | 119 | 4 | return m_buffer[m_count - 1]; | 120 | 4 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 955k | { | 118 | 955k | SLANG_ASSERT(m_count > 0); | 119 | 955k | return m_buffer[m_count - 1]; | 120 | 955k | } |
_ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 564 | { | 118 | 564 | SLANG_ASSERT(m_count > 0); | 119 | 564 | return m_buffer[m_count - 1]; | 120 | 564 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 22 | { | 118 | 22 | SLANG_ASSERT(m_count > 0); | 119 | 22 | return m_buffer[m_count - 1]; | 120 | 22 | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 266 | { | 118 | 266 | SLANG_ASSERT(m_count > 0); | 119 | 266 | return m_buffer[m_count - 1]; | 120 | 266 | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 13 | { | 118 | 13 | SLANG_ASSERT(m_count > 0); | 119 | 13 | return m_buffer[m_count - 1]; | 120 | 13 | } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 20.6k | { | 118 | 20.6k | SLANG_ASSERT(m_count > 0); | 119 | 20.6k | return m_buffer[m_count - 1]; | 120 | 20.6k | } |
_ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 9.71k | { | 118 | 9.71k | SLANG_ASSERT(m_count > 0); | 119 | 9.71k | return m_buffer[m_count - 1]; | 120 | 9.71k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 684 | { | 118 | 684 | SLANG_ASSERT(m_count > 0); | 119 | 684 | return m_buffer[m_count - 1]; | 120 | 684 | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 26 | { | 118 | 26 | SLANG_ASSERT(m_count > 0); | 119 | 26 | return m_buffer[m_count - 1]; | 120 | 26 | } |
_ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 1.85k | { | 118 | 1.85k | SLANG_ASSERT(m_count > 0); | 119 | 1.85k | return m_buffer[m_count - 1]; | 120 | 1.85k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 20.3k | { | 118 | 20.3k | SLANG_ASSERT(m_count > 0); | 119 | 20.3k | return m_buffer[m_count - 1]; | 120 | 20.3k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE7getLastEv Unexecuted instantiation: _ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 2 | { | 118 | 2 | SLANG_ASSERT(m_count > 0); | 119 | 2 | return m_buffer[m_count - 1]; | 120 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 2.75k | { | 118 | 2.75k | SLANG_ASSERT(m_count > 0); | 119 | 2.75k | return m_buffer[m_count - 1]; | 120 | 2.75k | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 344k | { | 118 | 344k | SLANG_ASSERT(m_count > 0); | 119 | 344k | return m_buffer[m_count - 1]; | 120 | 344k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE7getLastEv Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE7getLastEv Unexecuted instantiation: _ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 1.92k | { | 118 | 1.92k | SLANG_ASSERT(m_count > 0); | 119 | 1.92k | return m_buffer[m_count - 1]; | 120 | 1.92k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 568 | { | 118 | 568 | SLANG_ASSERT(m_count > 0); | 119 | 568 | return m_buffer[m_count - 1]; | 120 | 568 | } |
Unexecuted instantiation: _ZN5Slang4ListIlNS_17StandardAllocatorEE7getLastEv Unexecuted instantiation: _ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 21.3k | { | 118 | 21.3k | SLANG_ASSERT(m_count > 0); | 119 | 21.3k | return m_buffer[m_count - 1]; | 120 | 21.3k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE7getLastEv _ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE7getLastEv Line | Count | Source | 117 | 20.2k | { | 118 | 20.2k | SLANG_ASSERT(m_count > 0); | 119 | 20.2k | return m_buffer[m_count - 1]; | 120 | 20.2k | } |
|
121 | | |
122 | | void removeLast() |
123 | 23.8M | { |
124 | 23.8M | SLANG_ASSERT(m_count > 0); |
125 | 23.8M | m_count--; |
126 | 23.8M | } _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 22.9M | { | 124 | 22.9M | SLANG_ASSERT(m_count > 0); | 125 | 22.9M | m_count--; | 126 | 22.9M | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 5 | { | 124 | 5 | SLANG_ASSERT(m_count > 0); | 125 | 5 | m_count--; | 126 | 5 | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 37.2k | { | 124 | 37.2k | SLANG_ASSERT(m_count > 0); | 125 | 37.2k | m_count--; | 126 | 37.2k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE10removeLastEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 492k | { | 124 | 492k | SLANG_ASSERT(m_count > 0); | 125 | 492k | m_count--; | 126 | 492k | } |
_ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 564 | { | 124 | 564 | SLANG_ASSERT(m_count > 0); | 125 | 564 | m_count--; | 126 | 564 | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 266 | { | 124 | 266 | SLANG_ASSERT(m_count > 0); | 125 | 266 | m_count--; | 126 | 266 | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 13 | { | 124 | 13 | SLANG_ASSERT(m_count > 0); | 125 | 13 | m_count--; | 126 | 13 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE10removeLastEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE10removeLastEv _ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 20.6k | { | 124 | 20.6k | SLANG_ASSERT(m_count > 0); | 125 | 20.6k | m_count--; | 126 | 20.6k | } |
_ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 9.71k | { | 124 | 9.71k | SLANG_ASSERT(m_count > 0); | 125 | 9.71k | m_count--; | 126 | 9.71k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 496 | { | 124 | 496 | SLANG_ASSERT(m_count > 0); | 125 | 496 | m_count--; | 126 | 496 | } |
_ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 1.85k | { | 124 | 1.85k | SLANG_ASSERT(m_count > 0); | 125 | 1.85k | m_count--; | 126 | 1.85k | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 2.75k | { | 124 | 2.75k | SLANG_ASSERT(m_count > 0); | 125 | 2.75k | m_count--; | 126 | 2.75k | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 344k | { | 124 | 344k | SLANG_ASSERT(m_count > 0); | 125 | 344k | m_count--; | 126 | 344k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE10removeLastEv Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE10removeLastEv Unexecuted instantiation: _ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE10removeLastEv _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 465 | { | 124 | 465 | SLANG_ASSERT(m_count > 0); | 125 | 465 | m_count--; | 126 | 465 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE10removeLastEv Unexecuted instantiation: _ZN5Slang4ListIlNS_17StandardAllocatorEE10removeLastEv Unexecuted instantiation: _ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE10removeLastEv _ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 21.3k | { | 124 | 21.3k | SLANG_ASSERT(m_count > 0); | 125 | 21.3k | m_count--; | 126 | 21.3k | } |
_ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE10removeLastEv Line | Count | Source | 123 | 20.2k | { | 124 | 20.2k | SLANG_ASSERT(m_count > 0); | 125 | 20.2k | m_count--; | 126 | 20.2k | } |
|
127 | | |
128 | | inline void swapWith(List<T, TAllocator>& other) |
129 | 50.9k | { |
130 | 50.9k | T* buffer = m_buffer; |
131 | 50.9k | m_buffer = other.m_buffer; |
132 | 50.9k | other.m_buffer = buffer; |
133 | | |
134 | 50.9k | auto bufferSize = m_capacity; |
135 | 50.9k | m_capacity = other.m_capacity; |
136 | 50.9k | other.m_capacity = bufferSize; |
137 | | |
138 | 50.9k | auto count = m_count; |
139 | 50.9k | m_count = other.m_count; |
140 | 50.9k | other.m_count = count; |
141 | 50.9k | } Unexecuted instantiation: _ZN5Slang4ListImNS_17StandardAllocatorEE8swapWithERS2_ _ZN5Slang4ListIhNS_17StandardAllocatorEE8swapWithERS2_ Line | Count | Source | 129 | 12 | { | 130 | 12 | T* buffer = m_buffer; | 131 | 12 | m_buffer = other.m_buffer; | 132 | 12 | other.m_buffer = buffer; | 133 | | | 134 | 12 | auto bufferSize = m_capacity; | 135 | 12 | m_capacity = other.m_capacity; | 136 | 12 | other.m_capacity = bufferSize; | 137 | | | 138 | 12 | auto count = m_count; | 139 | 12 | m_count = other.m_count; | 140 | 12 | other.m_count = count; | 141 | 12 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE8swapWithERS4_ _ZN5Slang4ListIjNS_17StandardAllocatorEE8swapWithERS2_ Line | Count | Source | 129 | 2.97k | { | 130 | 2.97k | T* buffer = m_buffer; | 131 | 2.97k | m_buffer = other.m_buffer; | 132 | 2.97k | other.m_buffer = buffer; | 133 | | | 134 | 2.97k | auto bufferSize = m_capacity; | 135 | 2.97k | m_capacity = other.m_capacity; | 136 | 2.97k | other.m_capacity = bufferSize; | 137 | | | 138 | 2.97k | auto count = m_count; | 139 | 2.97k | m_count = other.m_count; | 140 | 2.97k | other.m_count = count; | 141 | 2.97k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE8swapWithERS3_ _ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE8swapWithERS4_ Line | Count | Source | 129 | 46 | { | 130 | 46 | T* buffer = m_buffer; | 131 | 46 | m_buffer = other.m_buffer; | 132 | 46 | other.m_buffer = buffer; | 133 | | | 134 | 46 | auto bufferSize = m_capacity; | 135 | 46 | m_capacity = other.m_capacity; | 136 | 46 | other.m_capacity = bufferSize; | 137 | | | 138 | 46 | auto count = m_count; | 139 | 46 | m_count = other.m_count; | 140 | 46 | other.m_count = count; | 141 | 46 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8swapWithERS4_ Line | Count | Source | 129 | 47.9k | { | 130 | 47.9k | T* buffer = m_buffer; | 131 | 47.9k | m_buffer = other.m_buffer; | 132 | 47.9k | other.m_buffer = buffer; | 133 | | | 134 | 47.9k | auto bufferSize = m_capacity; | 135 | 47.9k | m_capacity = other.m_capacity; | 136 | 47.9k | other.m_capacity = bufferSize; | 137 | | | 138 | 47.9k | auto count = m_count; | 139 | 47.9k | m_count = other.m_count; | 140 | 47.9k | other.m_count = count; | 141 | 47.9k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8swapWithERS4_ Unexecuted instantiation: _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE8swapWithERS3_ Unexecuted instantiation: _ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE8swapWithERS4_ Unexecuted instantiation: _ZN5Slang4ListIlNS_17StandardAllocatorEE8swapWithERS2_ Unexecuted instantiation: _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE8swapWithERS4_ |
142 | | |
143 | | T* detachBuffer() |
144 | 704 | { |
145 | 704 | T* rs = m_buffer; |
146 | 704 | m_buffer = nullptr; |
147 | 704 | m_count = 0; |
148 | 704 | m_capacity = 0; |
149 | 704 | return rs; |
150 | 704 | } |
151 | | void attachBuffer(T* buffer, Index count, Index capacity) |
152 | 704 | { |
153 | | // Can only attach a buffer if there isn't a buffer already associated |
154 | 704 | SLANG_ASSERT(m_buffer == nullptr); |
155 | 704 | SLANG_ASSERT(count <= capacity); |
156 | 704 | m_buffer = buffer; |
157 | 704 | m_count = count; |
158 | 704 | m_capacity = capacity; |
159 | 704 | } |
160 | | |
161 | 775k | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); }_ZNK5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 254 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 18.3k | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE12getArrayViewEv _ZNK5Slang4ListIPNS_3ValENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 738k | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 17.1k | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 57 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 100 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE12getArrayViewEv Unexecuted instantiation: _ZNK5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE12getArrayViewEv _ZNK5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 4 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE12getArrayViewEv _ZNK5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 52 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListINS_9NameValueENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 27 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIPKvNS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 2 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIlNS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 390 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 3 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListIhNS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 326 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
_ZNK5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE12getArrayViewEv Line | Count | Source | 161 | 287 | inline ArrayView<T> getArrayView() const { return ArrayView<T>(m_buffer, m_count); } |
|
162 | | |
163 | | inline ArrayView<T> getArrayView(Index start, Index count) const |
164 | 231 | { |
165 | 231 | SLANG_ASSERT(start >= 0 && count >= 0 && start + count <= m_count); |
166 | 231 | return ArrayView<T>(m_buffer + start, count); |
167 | 231 | } _ZNK5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE12getArrayViewEll Line | Count | Source | 164 | 231 | { | 165 | 231 | SLANG_ASSERT(start >= 0 && count >= 0 && start + count <= m_count); | 166 | 231 | return ArrayView<T>(m_buffer + start, count); | 167 | 231 | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE12getArrayViewEll Unexecuted instantiation: _ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE12getArrayViewEll |
168 | | |
169 | | void _maybeReserveForAdd() |
170 | 111M | { |
171 | 111M | if (m_capacity <= m_count) |
172 | 9.99M | { |
173 | 9.99M | Index newBufferSize = kInitialCount; |
174 | 9.99M | if (m_capacity) |
175 | 285k | newBufferSize = (m_capacity << 1); |
176 | | |
177 | 9.99M | reserve(newBufferSize); |
178 | 9.99M | } |
179 | 111M | } _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6 | { | 171 | 6 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 5.43k | { | 171 | 5.43k | if (m_capacity <= m_count) | 172 | 1.14k | { | 173 | 1.14k | Index newBufferSize = kInitialCount; | 174 | 1.14k | if (m_capacity) | 175 | 2 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.14k | reserve(newBufferSize); | 178 | 1.14k | } | 179 | 5.43k | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 106k | { | 171 | 106k | if (m_capacity <= m_count) | 172 | 15.9k | { | 173 | 15.9k | Index newBufferSize = kInitialCount; | 174 | 15.9k | if (m_capacity) | 175 | 886 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 15.9k | reserve(newBufferSize); | 178 | 15.9k | } | 179 | 106k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 148k | { | 171 | 148k | if (m_capacity <= m_count) | 172 | 4.69k | { | 173 | 4.69k | Index newBufferSize = kInitialCount; | 174 | 4.69k | if (m_capacity) | 175 | 1.74k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4.69k | reserve(newBufferSize); | 178 | 4.69k | } | 179 | 148k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6.42k | { | 171 | 6.42k | if (m_capacity <= m_count) | 172 | 2.34k | { | 173 | 2.34k | Index newBufferSize = kInitialCount; | 174 | 2.34k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.34k | reserve(newBufferSize); | 178 | 2.34k | } | 179 | 6.42k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 440 | { | 171 | 440 | if (m_capacity <= m_count) | 172 | 246 | { | 173 | 246 | Index newBufferSize = kInitialCount; | 174 | 246 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 246 | reserve(newBufferSize); | 178 | 246 | } | 179 | 440 | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 133 | { | 171 | 133 | if (m_capacity <= m_count) | 172 | 71 | { | 173 | 71 | Index newBufferSize = kInitialCount; | 174 | 71 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 71 | reserve(newBufferSize); | 178 | 71 | } | 179 | 133 | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.37M | { | 171 | 1.37M | if (m_capacity <= m_count) | 172 | 574k | { | 173 | 574k | Index newBufferSize = kInitialCount; | 174 | 574k | if (m_capacity) | 175 | 1 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 574k | reserve(newBufferSize); | 178 | 574k | } | 179 | 1.37M | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 35.5M | { | 171 | 35.5M | if (m_capacity <= m_count) | 172 | 3.25M | { | 173 | 3.25M | Index newBufferSize = kInitialCount; | 174 | 3.25M | if (m_capacity) | 175 | 134k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.25M | reserve(newBufferSize); | 178 | 3.25M | } | 179 | 35.5M | } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 849k | { | 171 | 849k | if (m_capacity <= m_count) | 172 | 1.55k | { | 173 | 1.55k | Index newBufferSize = kInitialCount; | 174 | 1.55k | if (m_capacity) | 175 | 1.18k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.55k | reserve(newBufferSize); | 178 | 1.55k | } | 179 | 849k | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.87k | { | 171 | 2.87k | if (m_capacity <= m_count) | 172 | 2.80k | { | 173 | 2.80k | Index newBufferSize = kInitialCount; | 174 | 2.80k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.80k | reserve(newBufferSize); | 178 | 2.80k | } | 179 | 2.87k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.97k | { | 171 | 1.97k | if (m_capacity <= m_count) | 172 | 1.95k | { | 173 | 1.95k | Index newBufferSize = kInitialCount; | 174 | 1.95k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.95k | reserve(newBufferSize); | 178 | 1.95k | } | 179 | 1.97k | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.20k | { | 171 | 2.20k | if (m_capacity <= m_count) | 172 | 1.16k | { | 173 | 1.16k | Index newBufferSize = kInitialCount; | 174 | 1.16k | if (m_capacity) | 175 | 14 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.16k | reserve(newBufferSize); | 178 | 1.16k | } | 179 | 2.20k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.16M | { | 171 | 2.16M | if (m_capacity <= m_count) | 172 | 887k | { | 173 | 887k | Index newBufferSize = kInitialCount; | 174 | 887k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 887k | reserve(newBufferSize); | 178 | 887k | } | 179 | 2.16M | } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 7.70k | { | 171 | 7.70k | if (m_capacity <= m_count) | 172 | 7.49k | { | 173 | 7.49k | Index newBufferSize = kInitialCount; | 174 | 7.49k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 7.49k | reserve(newBufferSize); | 178 | 7.49k | } | 179 | 7.70k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 384k | { | 171 | 384k | if (m_capacity <= m_count) | 172 | 71.3k | { | 173 | 71.3k | Index newBufferSize = kInitialCount; | 174 | 71.3k | if (m_capacity) | 175 | 2.14k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 71.3k | reserve(newBufferSize); | 178 | 71.3k | } | 179 | 384k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 30 | { | 171 | 30 | if (m_capacity <= m_count) | 172 | 22 | { | 173 | 22 | Index newBufferSize = kInitialCount; | 174 | 22 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 22 | reserve(newBufferSize); | 178 | 22 | } | 179 | 30 | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 137 | { | 171 | 137 | if (m_capacity <= m_count) | 172 | 48 | { | 173 | 48 | Index newBufferSize = kInitialCount; | 174 | 48 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 48 | reserve(newBufferSize); | 178 | 48 | } | 179 | 137 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.65k | { | 171 | 2.65k | if (m_capacity <= m_count) | 172 | 817 | { | 173 | 817 | Index newBufferSize = kInitialCount; | 174 | 817 | if (m_capacity) | 175 | 17 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 817 | reserve(newBufferSize); | 178 | 817 | } | 179 | 2.65k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 187k | { | 171 | 187k | if (m_capacity <= m_count) | 172 | 165k | { | 173 | 165k | Index newBufferSize = kInitialCount; | 174 | 165k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 165k | reserve(newBufferSize); | 178 | 165k | } | 179 | 187k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 28.3k | { | 171 | 28.3k | if (m_capacity <= m_count) | 172 | 17.8k | { | 173 | 17.8k | Index newBufferSize = kInitialCount; | 174 | 17.8k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 17.8k | reserve(newBufferSize); | 178 | 17.8k | } | 179 | 28.3k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIbNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 153 | { | 171 | 153 | if (m_capacity <= m_count) | 172 | 126 | { | 173 | 126 | Index newBufferSize = kInitialCount; | 174 | 126 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 126 | reserve(newBufferSize); | 178 | 126 | } | 179 | 153 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 412 | { | 171 | 412 | if (m_capacity <= m_count) | 172 | 226 | { | 173 | 226 | Index newBufferSize = kInitialCount; | 174 | 226 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 226 | reserve(newBufferSize); | 178 | 226 | } | 179 | 412 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 408 | { | 171 | 408 | if (m_capacity <= m_count) | 172 | 408 | { | 173 | 408 | Index newBufferSize = kInitialCount; | 174 | 408 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 408 | reserve(newBufferSize); | 178 | 408 | } | 179 | 408 | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 544k | { | 171 | 544k | if (m_capacity <= m_count) | 172 | 37.1k | { | 173 | 37.1k | Index newBufferSize = kInitialCount; | 174 | 37.1k | if (m_capacity) | 175 | 3.21k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 37.1k | reserve(newBufferSize); | 178 | 37.1k | } | 179 | 544k | } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 26.6k | { | 171 | 26.6k | if (m_capacity <= m_count) | 172 | 102 | { | 173 | 102 | Index newBufferSize = kInitialCount; | 174 | 102 | if (m_capacity) | 175 | 102 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 102 | reserve(newBufferSize); | 178 | 102 | } | 179 | 26.6k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.29M | { | 171 | 1.29M | if (m_capacity <= m_count) | 172 | 649k | { | 173 | 649k | Index newBufferSize = kInitialCount; | 174 | 649k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 649k | reserve(newBufferSize); | 178 | 649k | } | 179 | 1.29M | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 167k | { | 171 | 167k | if (m_capacity <= m_count) | 172 | 22.8k | { | 173 | 22.8k | Index newBufferSize = kInitialCount; | 174 | 22.8k | if (m_capacity) | 175 | 1.82k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 22.8k | reserve(newBufferSize); | 178 | 22.8k | } | 179 | 167k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.20M | { | 171 | 1.20M | if (m_capacity <= m_count) | 172 | 70.7k | { | 173 | 70.7k | Index newBufferSize = kInitialCount; | 174 | 70.7k | if (m_capacity) | 175 | 32.5k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 70.7k | reserve(newBufferSize); | 178 | 70.7k | } | 179 | 1.20M | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 411 | { | 171 | 411 | if (m_capacity <= m_count) | 172 | 408 | { | 173 | 408 | Index newBufferSize = kInitialCount; | 174 | 408 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 408 | reserve(newBufferSize); | 178 | 408 | } | 179 | 411 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 691 | { | 171 | 691 | if (m_capacity <= m_count) | 172 | 323 | { | 173 | 323 | Index newBufferSize = kInitialCount; | 174 | 323 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 323 | reserve(newBufferSize); | 178 | 323 | } | 179 | 691 | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.15k | { | 171 | 2.15k | if (m_capacity <= m_count) | 172 | 362 | { | 173 | 362 | Index newBufferSize = kInitialCount; | 174 | 362 | if (m_capacity) | 175 | 34 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 362 | reserve(newBufferSize); | 178 | 362 | } | 179 | 2.15k | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 4.37k | { | 171 | 4.37k | if (m_capacity <= m_count) | 172 | 1.24k | { | 173 | 1.24k | Index newBufferSize = kInitialCount; | 174 | 1.24k | if (m_capacity) | 175 | 81 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.24k | reserve(newBufferSize); | 178 | 1.24k | } | 179 | 4.37k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 380k | { | 171 | 380k | if (m_capacity <= m_count) | 172 | 209k | { | 173 | 209k | Index newBufferSize = kInitialCount; | 174 | 209k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 209k | reserve(newBufferSize); | 178 | 209k | } | 179 | 380k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 177 | { | 171 | 177 | if (m_capacity <= m_count) | 172 | 159 | { | 173 | 159 | Index newBufferSize = kInitialCount; | 174 | 159 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 159 | reserve(newBufferSize); | 178 | 159 | } | 179 | 177 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 8 | { | 171 | 8 | if (m_capacity <= m_count) | 172 | 8 | { | 173 | 8 | Index newBufferSize = kInitialCount; | 174 | 8 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 8 | reserve(newBufferSize); | 178 | 8 | } | 179 | 8 | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 33 | { | 171 | 33 | if (m_capacity <= m_count) | 172 | 31 | { | 173 | 31 | Index newBufferSize = kInitialCount; | 174 | 31 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 31 | reserve(newBufferSize); | 178 | 31 | } | 179 | 33 | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6.56k | { | 171 | 6.56k | if (m_capacity <= m_count) | 172 | 3.35k | { | 173 | 3.35k | Index newBufferSize = kInitialCount; | 174 | 3.35k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.35k | reserve(newBufferSize); | 178 | 3.35k | } | 179 | 6.56k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 11 | { | 171 | 11 | if (m_capacity <= m_count) | 172 | 5 | { | 173 | 5 | Index newBufferSize = kInitialCount; | 174 | 5 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 5 | reserve(newBufferSize); | 178 | 5 | } | 179 | 11 | } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 11 | { | 171 | 11 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 11 | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 7.14M | { | 171 | 7.14M | if (m_capacity <= m_count) | 172 | 17.9k | { | 173 | 17.9k | Index newBufferSize = kInitialCount; | 174 | 17.9k | if (m_capacity) | 175 | 686 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 17.9k | reserve(newBufferSize); | 178 | 17.9k | } | 179 | 7.14M | } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 51 | { | 171 | 51 | if (m_capacity <= m_count) | 172 | 22 | { | 173 | 22 | Index newBufferSize = kInitialCount; | 174 | 22 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 22 | reserve(newBufferSize); | 178 | 22 | } | 179 | 51 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 222k | { | 171 | 222k | if (m_capacity <= m_count) | 172 | 59.6k | { | 173 | 59.6k | Index newBufferSize = kInitialCount; | 174 | 59.6k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 59.6k | reserve(newBufferSize); | 178 | 59.6k | } | 179 | 222k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 5.42k | { | 171 | 5.42k | if (m_capacity <= m_count) | 172 | 1.76k | { | 173 | 1.76k | Index newBufferSize = kInitialCount; | 174 | 1.76k | if (m_capacity) | 175 | 50 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.76k | reserve(newBufferSize); | 178 | 1.76k | } | 179 | 5.42k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 981k | { | 171 | 981k | if (m_capacity <= m_count) | 172 | 692k | { | 173 | 692k | Index newBufferSize = kInitialCount; | 174 | 692k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 692k | reserve(newBufferSize); | 178 | 692k | } | 179 | 981k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.60k | { | 171 | 1.60k | if (m_capacity <= m_count) | 172 | 691 | { | 173 | 691 | Index newBufferSize = kInitialCount; | 174 | 691 | if (m_capacity) | 175 | 22 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 691 | reserve(newBufferSize); | 178 | 691 | } | 179 | 1.60k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 91 | { | 171 | 91 | if (m_capacity <= m_count) | 172 | 91 | { | 173 | 91 | Index newBufferSize = kInitialCount; | 174 | 91 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 91 | reserve(newBufferSize); | 178 | 91 | } | 179 | 91 | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 362 | { | 171 | 362 | if (m_capacity <= m_count) | 172 | 352 | { | 173 | 352 | Index newBufferSize = kInitialCount; | 174 | 352 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 352 | reserve(newBufferSize); | 178 | 352 | } | 179 | 362 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 960 | { | 171 | 960 | if (m_capacity <= m_count) | 172 | 860 | { | 173 | 860 | Index newBufferSize = kInitialCount; | 174 | 860 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 860 | reserve(newBufferSize); | 178 | 860 | } | 179 | 960 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.26k | { | 171 | 1.26k | if (m_capacity <= m_count) | 172 | 810 | { | 173 | 810 | Index newBufferSize = kInitialCount; | 174 | 810 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 810 | reserve(newBufferSize); | 178 | 810 | } | 179 | 1.26k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 9 | { | 171 | 9 | if (m_capacity <= m_count) | 172 | 9 | { | 173 | 9 | Index newBufferSize = kInitialCount; | 174 | 9 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 9 | reserve(newBufferSize); | 178 | 9 | } | 179 | 9 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.85k | { | 171 | 1.85k | if (m_capacity <= m_count) | 172 | 1.27k | { | 173 | 1.27k | Index newBufferSize = kInitialCount; | 174 | 1.27k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.27k | reserve(newBufferSize); | 178 | 1.27k | } | 179 | 1.85k | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 12.7k | { | 171 | 12.7k | if (m_capacity <= m_count) | 172 | 1.76k | { | 173 | 1.76k | Index newBufferSize = kInitialCount; | 174 | 1.76k | if (m_capacity) | 175 | 112 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.76k | reserve(newBufferSize); | 178 | 1.76k | } | 179 | 12.7k | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 363 | { | 171 | 363 | if (m_capacity <= m_count) | 172 | 363 | { | 173 | 363 | Index newBufferSize = kInitialCount; | 174 | 363 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 363 | reserve(newBufferSize); | 178 | 363 | } | 179 | 363 | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 142 | { | 171 | 142 | if (m_capacity <= m_count) | 172 | 140 | { | 173 | 140 | Index newBufferSize = kInitialCount; | 174 | 140 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 140 | reserve(newBufferSize); | 178 | 140 | } | 179 | 142 | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 142 | { | 171 | 142 | if (m_capacity <= m_count) | 172 | 140 | { | 173 | 140 | Index newBufferSize = kInitialCount; | 174 | 140 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 140 | reserve(newBufferSize); | 178 | 140 | } | 179 | 142 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.74k | { | 171 | 2.74k | if (m_capacity <= m_count) | 172 | 457 | { | 173 | 457 | Index newBufferSize = kInitialCount; | 174 | 457 | if (m_capacity) | 175 | 40 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 457 | reserve(newBufferSize); | 178 | 457 | } | 179 | 2.74k | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 53.0k | { | 171 | 53.0k | if (m_capacity <= m_count) | 172 | 53 | { | 173 | 53 | Index newBufferSize = kInitialCount; | 174 | 53 | if (m_capacity) | 175 | 25 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 53 | reserve(newBufferSize); | 178 | 53 | } | 179 | 53.0k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIlNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 22.4M | { | 171 | 22.4M | if (m_capacity <= m_count) | 172 | 6.52k | { | 173 | 6.52k | Index newBufferSize = kInitialCount; | 174 | 6.52k | if (m_capacity) | 175 | 3.45k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 6.52k | reserve(newBufferSize); | 178 | 6.52k | } | 179 | 22.4M | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 12 | { | 171 | 12 | if (m_capacity <= m_count) | 172 | 11 | { | 173 | 11 | Index newBufferSize = kInitialCount; | 174 | 11 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 11 | reserve(newBufferSize); | 178 | 11 | } | 179 | 12 | } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 22.4k | { | 171 | 22.4k | if (m_capacity <= m_count) | 172 | 589 | { | 173 | 589 | Index newBufferSize = kInitialCount; | 174 | 589 | if (m_capacity) | 175 | 447 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 589 | reserve(newBufferSize); | 178 | 589 | } | 179 | 22.4k | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 170 | { | 171 | 170 | if (m_capacity <= m_count) | 172 | 74 | { | 173 | 74 | Index newBufferSize = kInitialCount; | 174 | 74 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 74 | reserve(newBufferSize); | 178 | 74 | } | 179 | 170 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 93.2k | { | 171 | 93.2k | if (m_capacity <= m_count) | 172 | 7.69k | { | 173 | 7.69k | Index newBufferSize = kInitialCount; | 174 | 7.69k | if (m_capacity) | 175 | 478 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 7.69k | reserve(newBufferSize); | 178 | 7.69k | } | 179 | 93.2k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 45.9k | { | 171 | 45.9k | if (m_capacity <= m_count) | 172 | 26.4k | { | 173 | 26.4k | Index newBufferSize = kInitialCount; | 174 | 26.4k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 26.4k | reserve(newBufferSize); | 178 | 26.4k | } | 179 | 45.9k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 331 | { | 171 | 331 | if (m_capacity <= m_count) | 172 | 124 | { | 173 | 124 | Index newBufferSize = kInitialCount; | 174 | 124 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 124 | reserve(newBufferSize); | 178 | 124 | } | 179 | 331 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E19_maybeReserveForAddEv Line | Count | Source | 170 | 4 | { | 171 | 4 | if (m_capacity <= m_count) | 172 | 4 | { | 173 | 4 | Index newBufferSize = kInitialCount; | 174 | 4 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4 | reserve(newBufferSize); | 178 | 4 | } | 179 | 4 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 8 | { | 171 | 8 | if (m_capacity <= m_count) | 172 | 4 | { | 173 | 4 | Index newBufferSize = kInitialCount; | 174 | 4 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4 | reserve(newBufferSize); | 178 | 4 | } | 179 | 8 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E19_maybeReserveForAddEv Line | Count | Source | 170 | 4 | { | 171 | 4 | if (m_capacity <= m_count) | 172 | 4 | { | 173 | 4 | Index newBufferSize = kInitialCount; | 174 | 4 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4 | reserve(newBufferSize); | 178 | 4 | } | 179 | 4 | } |
_ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.00k | { | 171 | 1.00k | if (m_capacity <= m_count) | 172 | 695 | { | 173 | 695 | Index newBufferSize = kInitialCount; | 174 | 695 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 695 | reserve(newBufferSize); | 178 | 695 | } | 179 | 1.00k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 77.2k | { | 171 | 77.2k | if (m_capacity <= m_count) | 172 | 5.07k | { | 173 | 5.07k | Index newBufferSize = kInitialCount; | 174 | 5.07k | if (m_capacity) | 175 | 979 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 5.07k | reserve(newBufferSize); | 178 | 5.07k | } | 179 | 77.2k | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 17.8M | { | 171 | 17.8M | if (m_capacity <= m_count) | 172 | 953 | { | 173 | 953 | Index newBufferSize = kInitialCount; | 174 | 953 | if (m_capacity) | 175 | 903 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 953 | reserve(newBufferSize); | 178 | 953 | } | 179 | 17.8M | } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 10 | { | 171 | 10 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 10 | } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6 | { | 171 | 6 | if (m_capacity <= m_count) | 172 | 4 | { | 173 | 4 | Index newBufferSize = kInitialCount; | 174 | 4 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4 | reserve(newBufferSize); | 178 | 4 | } | 179 | 6 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 29 | { | 171 | 29 | if (m_capacity <= m_count) | 172 | 19 | { | 173 | 19 | Index newBufferSize = kInitialCount; | 174 | 19 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 19 | reserve(newBufferSize); | 178 | 19 | } | 179 | 29 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 2 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 81 | { | 171 | 81 | if (m_capacity <= m_count) | 172 | 81 | { | 173 | 81 | Index newBufferSize = kInitialCount; | 174 | 81 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 81 | reserve(newBufferSize); | 178 | 81 | } | 179 | 81 | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 141 | { | 171 | 141 | if (m_capacity <= m_count) | 172 | 137 | { | 173 | 137 | Index newBufferSize = kInitialCount; | 174 | 137 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 137 | reserve(newBufferSize); | 178 | 137 | } | 179 | 141 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 52 | { | 171 | 52 | if (m_capacity <= m_count) | 172 | 21 | { | 173 | 21 | Index newBufferSize = kInitialCount; | 174 | 21 | if (m_capacity) | 175 | 1 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 21 | reserve(newBufferSize); | 178 | 21 | } | 179 | 52 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 27 | { | 171 | 27 | if (m_capacity <= m_count) | 172 | 13 | { | 173 | 13 | Index newBufferSize = kInitialCount; | 174 | 13 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 13 | reserve(newBufferSize); | 178 | 13 | } | 179 | 27 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.05M | { | 171 | 2.05M | if (m_capacity <= m_count) | 172 | 210k | { | 173 | 210k | Index newBufferSize = kInitialCount; | 174 | 210k | if (m_capacity) | 175 | 16.8k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 210k | reserve(newBufferSize); | 178 | 210k | } | 179 | 2.05M | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 83.3k | { | 171 | 83.3k | if (m_capacity <= m_count) | 172 | 81.8k | { | 173 | 81.8k | Index newBufferSize = kInitialCount; | 174 | 81.8k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 81.8k | reserve(newBufferSize); | 178 | 81.8k | } | 179 | 83.3k | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 43 | { | 171 | 43 | if (m_capacity <= m_count) | 172 | 22 | { | 173 | 22 | Index newBufferSize = kInitialCount; | 174 | 22 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 22 | reserve(newBufferSize); | 178 | 22 | } | 179 | 43 | } |
_ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 4 | { | 171 | 4 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 4 | } |
_ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 564 | { | 171 | 564 | if (m_capacity <= m_count) | 172 | 34 | { | 173 | 34 | Index newBufferSize = kInitialCount; | 174 | 34 | if (m_capacity) | 175 | 21 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 34 | reserve(newBufferSize); | 178 | 34 | } | 179 | 564 | } |
_ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 21 | { | 171 | 21 | if (m_capacity <= m_count) | 172 | 12 | { | 173 | 12 | Index newBufferSize = kInitialCount; | 174 | 12 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 12 | reserve(newBufferSize); | 178 | 12 | } | 179 | 21 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 311 | { | 171 | 311 | if (m_capacity <= m_count) | 172 | 278 | { | 173 | 278 | Index newBufferSize = kInitialCount; | 174 | 278 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 278 | reserve(newBufferSize); | 178 | 278 | } | 179 | 311 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 46 | { | 171 | 46 | if (m_capacity <= m_count) | 172 | 46 | { | 173 | 46 | Index newBufferSize = kInitialCount; | 174 | 46 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 46 | reserve(newBufferSize); | 178 | 46 | } | 179 | 46 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E19_maybeReserveForAddEv Line | Count | Source | 170 | 167 | { | 171 | 167 | if (m_capacity <= m_count) | 172 | 19 | { | 173 | 19 | Index newBufferSize = kInitialCount; | 174 | 19 | if (m_capacity) | 175 | 6 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 19 | reserve(newBufferSize); | 178 | 19 | } | 179 | 167 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 7.82k | { | 171 | 7.82k | if (m_capacity <= m_count) | 172 | 2.36k | { | 173 | 2.36k | Index newBufferSize = kInitialCount; | 174 | 2.36k | if (m_capacity) | 175 | 19 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.36k | reserve(newBufferSize); | 178 | 2.36k | } | 179 | 7.82k | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 266 | { | 171 | 266 | if (m_capacity <= m_count) | 172 | 16 | { | 173 | 16 | Index newBufferSize = kInitialCount; | 174 | 16 | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 16 | reserve(newBufferSize); | 178 | 16 | } | 179 | 266 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 317 | { | 171 | 317 | if (m_capacity <= m_count) | 172 | 283 | { | 173 | 283 | Index newBufferSize = kInitialCount; | 174 | 283 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 283 | reserve(newBufferSize); | 178 | 283 | } | 179 | 317 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 873 | { | 171 | 873 | if (m_capacity <= m_count) | 172 | 742 | { | 173 | 742 | Index newBufferSize = kInitialCount; | 174 | 742 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 742 | reserve(newBufferSize); | 178 | 742 | } | 179 | 873 | } |
Unexecuted instantiation: _ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 381 | { | 171 | 381 | if (m_capacity <= m_count) | 172 | 68 | { | 173 | 68 | Index newBufferSize = kInitialCount; | 174 | 68 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 68 | reserve(newBufferSize); | 178 | 68 | } | 179 | 381 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 7 | { | 171 | 7 | if (m_capacity <= m_count) | 172 | 6 | { | 173 | 6 | Index newBufferSize = kInitialCount; | 174 | 6 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 6 | reserve(newBufferSize); | 178 | 6 | } | 179 | 7 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.63k | { | 171 | 2.63k | if (m_capacity <= m_count) | 172 | 286 | { | 173 | 286 | Index newBufferSize = kInitialCount; | 174 | 286 | if (m_capacity) | 175 | 123 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 286 | reserve(newBufferSize); | 178 | 286 | } | 179 | 2.63k | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 104k | { | 171 | 104k | if (m_capacity <= m_count) | 172 | 435 | { | 173 | 435 | Index newBufferSize = kInitialCount; | 174 | 435 | if (m_capacity) | 175 | 284 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 435 | reserve(newBufferSize); | 178 | 435 | } | 179 | 104k | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 32.1k | { | 171 | 32.1k | if (m_capacity <= m_count) | 172 | 8.87k | { | 173 | 8.87k | Index newBufferSize = kInitialCount; | 174 | 8.87k | if (m_capacity) | 175 | 310 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 8.87k | reserve(newBufferSize); | 178 | 8.87k | } | 179 | 32.1k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 149 | { | 171 | 149 | if (m_capacity <= m_count) | 172 | 80 | { | 173 | 80 | Index newBufferSize = kInitialCount; | 174 | 80 | if (m_capacity) | 175 | 1 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 80 | reserve(newBufferSize); | 178 | 80 | } | 179 | 149 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListImNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 5.16M | { | 171 | 5.16M | if (m_capacity <= m_count) | 172 | 2.44M | { | 173 | 2.44M | Index newBufferSize = kInitialCount; | 174 | 2.44M | if (m_capacity) | 175 | 248 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.44M | reserve(newBufferSize); | 178 | 2.44M | } | 179 | 5.16M | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 440k | { | 171 | 440k | if (m_capacity <= m_count) | 172 | 22.2k | { | 173 | 22.2k | Index newBufferSize = kInitialCount; | 174 | 22.2k | if (m_capacity) | 175 | 5.93k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 22.2k | reserve(newBufferSize); | 178 | 22.2k | } | 179 | 440k | } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 207 | { | 171 | 207 | if (m_capacity <= m_count) | 172 | 195 | { | 173 | 195 | Index newBufferSize = kInitialCount; | 174 | 195 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 195 | reserve(newBufferSize); | 178 | 195 | } | 179 | 207 | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 18 | { | 171 | 18 | if (m_capacity <= m_count) | 172 | 14 | { | 173 | 14 | Index newBufferSize = kInitialCount; | 174 | 14 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 14 | reserve(newBufferSize); | 178 | 14 | } | 179 | 18 | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3.15k | { | 171 | 3.15k | if (m_capacity <= m_count) | 172 | 70 | { | 173 | 70 | Index newBufferSize = kInitialCount; | 174 | 70 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 70 | reserve(newBufferSize); | 178 | 70 | } | 179 | 3.15k | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 48 | { | 171 | 48 | if (m_capacity <= m_count) | 172 | 48 | { | 173 | 48 | Index newBufferSize = kInitialCount; | 174 | 48 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 48 | reserve(newBufferSize); | 178 | 48 | } | 179 | 48 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 2 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 139 | { | 171 | 139 | if (m_capacity <= m_count) | 172 | 113 | { | 173 | 113 | Index newBufferSize = kInitialCount; | 174 | 113 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 113 | reserve(newBufferSize); | 178 | 113 | } | 179 | 139 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 88.9k | { | 171 | 88.9k | if (m_capacity <= m_count) | 172 | 10.1k | { | 173 | 10.1k | Index newBufferSize = kInitialCount; | 174 | 10.1k | if (m_capacity) | 175 | 1.08k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 10.1k | reserve(newBufferSize); | 178 | 10.1k | } | 179 | 88.9k | } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 2 | } |
slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 84 | { | 171 | 84 | if (m_capacity <= m_count) | 172 | 44 | { | 173 | 44 | Index newBufferSize = kInitialCount; | 174 | 44 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 44 | reserve(newBufferSize); | 178 | 44 | } | 179 | 84 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 11 | { | 171 | 11 | if (m_capacity <= m_count) | 172 | 11 | { | 173 | 11 | Index newBufferSize = kInitialCount; | 174 | 11 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 11 | reserve(newBufferSize); | 178 | 11 | } | 179 | 11 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 208 | { | 171 | 208 | if (m_capacity <= m_count) | 172 | 122 | { | 173 | 122 | Index newBufferSize = kInitialCount; | 174 | 122 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 122 | reserve(newBufferSize); | 178 | 122 | } | 179 | 208 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 46 | { | 171 | 46 | if (m_capacity <= m_count) | 172 | 31 | { | 173 | 31 | Index newBufferSize = kInitialCount; | 174 | 31 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 31 | reserve(newBufferSize); | 178 | 31 | } | 179 | 46 | } |
_ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 70 | { | 171 | 70 | if (m_capacity <= m_count) | 172 | 31 | { | 173 | 31 | Index newBufferSize = kInitialCount; | 174 | 31 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 31 | reserve(newBufferSize); | 178 | 31 | } | 179 | 70 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6 | { | 171 | 6 | if (m_capacity <= m_count) | 172 | 6 | { | 173 | 6 | Index newBufferSize = kInitialCount; | 174 | 6 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 6 | reserve(newBufferSize); | 178 | 6 | } | 179 | 6 | } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 904 | { | 171 | 904 | if (m_capacity <= m_count) | 172 | 196 | { | 173 | 196 | Index newBufferSize = kInitialCount; | 174 | 196 | if (m_capacity) | 175 | 27 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 196 | reserve(newBufferSize); | 178 | 196 | } | 179 | 904 | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.26k | { | 171 | 1.26k | if (m_capacity <= m_count) | 172 | 988 | { | 173 | 988 | Index newBufferSize = kInitialCount; | 174 | 988 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 988 | reserve(newBufferSize); | 178 | 988 | } | 179 | 1.26k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 117 | { | 171 | 117 | if (m_capacity <= m_count) | 172 | 71 | { | 173 | 71 | Index newBufferSize = kInitialCount; | 174 | 71 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 71 | reserve(newBufferSize); | 178 | 71 | } | 179 | 117 | } |
_ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.74k | { | 171 | 1.74k | if (m_capacity <= m_count) | 172 | 846 | { | 173 | 846 | Index newBufferSize = kInitialCount; | 174 | 846 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 846 | reserve(newBufferSize); | 178 | 846 | } | 179 | 1.74k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 231 | { | 171 | 231 | if (m_capacity <= m_count) | 172 | 127 | { | 173 | 127 | Index newBufferSize = kInitialCount; | 174 | 127 | if (m_capacity) | 175 | 2 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 127 | reserve(newBufferSize); | 178 | 127 | } | 179 | 231 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 534 | { | 171 | 534 | if (m_capacity <= m_count) | 172 | 235 | { | 173 | 235 | Index newBufferSize = kInitialCount; | 174 | 235 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 235 | reserve(newBufferSize); | 178 | 235 | } | 179 | 534 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 487 | { | 171 | 487 | if (m_capacity <= m_count) | 172 | 89 | { | 173 | 89 | Index newBufferSize = kInitialCount; | 174 | 89 | if (m_capacity) | 175 | 7 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 89 | reserve(newBufferSize); | 178 | 89 | } | 179 | 487 | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 9.05k | { | 171 | 9.05k | if (m_capacity <= m_count) | 172 | 511 | { | 173 | 511 | Index newBufferSize = kInitialCount; | 174 | 511 | if (m_capacity) | 175 | 251 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 511 | reserve(newBufferSize); | 178 | 511 | } | 179 | 9.05k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 2 | } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 184 | { | 171 | 184 | if (m_capacity <= m_count) | 172 | 117 | { | 173 | 117 | Index newBufferSize = kInitialCount; | 174 | 117 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 117 | reserve(newBufferSize); | 178 | 117 | } | 179 | 184 | } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 24 | { | 171 | 24 | if (m_capacity <= m_count) | 172 | 23 | { | 173 | 23 | Index newBufferSize = kInitialCount; | 174 | 23 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 23 | reserve(newBufferSize); | 178 | 23 | } | 179 | 24 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 7 | { | 171 | 7 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 7 | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 42.8k | { | 171 | 42.8k | if (m_capacity <= m_count) | 172 | 41.7k | { | 173 | 41.7k | Index newBufferSize = kInitialCount; | 174 | 41.7k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 41.7k | reserve(newBufferSize); | 178 | 41.7k | } | 179 | 42.8k | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 84.0k | { | 171 | 84.0k | if (m_capacity <= m_count) | 172 | 41.7k | { | 173 | 41.7k | Index newBufferSize = kInitialCount; | 174 | 41.7k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 41.7k | reserve(newBufferSize); | 178 | 41.7k | } | 179 | 84.0k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 7.83k | { | 171 | 7.83k | if (m_capacity <= m_count) | 172 | 4.26k | { | 173 | 4.26k | Index newBufferSize = kInitialCount; | 174 | 4.26k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4.26k | reserve(newBufferSize); | 178 | 4.26k | } | 179 | 7.83k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3.57k | { | 171 | 3.57k | if (m_capacity <= m_count) | 172 | 3.57k | { | 173 | 3.57k | Index newBufferSize = kInitialCount; | 174 | 3.57k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.57k | reserve(newBufferSize); | 178 | 3.57k | } | 179 | 3.57k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 74 | { | 171 | 74 | if (m_capacity <= m_count) | 172 | 12 | { | 173 | 12 | Index newBufferSize = kInitialCount; | 174 | 12 | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 12 | reserve(newBufferSize); | 178 | 12 | } | 179 | 74 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6 | { | 171 | 6 | if (m_capacity <= m_count) | 172 | 6 | { | 173 | 6 | Index newBufferSize = kInitialCount; | 174 | 6 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 6 | reserve(newBufferSize); | 178 | 6 | } | 179 | 6 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 10 | { | 171 | 10 | if (m_capacity <= m_count) | 172 | 6 | { | 173 | 6 | Index newBufferSize = kInitialCount; | 174 | 6 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 6 | reserve(newBufferSize); | 178 | 6 | } | 179 | 10 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 30 | { | 171 | 30 | if (m_capacity <= m_count) | 172 | 25 | { | 173 | 25 | Index newBufferSize = kInitialCount; | 174 | 25 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 25 | reserve(newBufferSize); | 178 | 25 | } | 179 | 30 | } |
Unexecuted instantiation: _ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 41 | { | 171 | 41 | if (m_capacity <= m_count) | 172 | 34 | { | 173 | 34 | Index newBufferSize = kInitialCount; | 174 | 34 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 34 | reserve(newBufferSize); | 178 | 34 | } | 179 | 41 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 76 | { | 171 | 76 | if (m_capacity <= m_count) | 172 | 52 | { | 173 | 52 | Index newBufferSize = kInitialCount; | 174 | 52 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 52 | reserve(newBufferSize); | 178 | 52 | } | 179 | 76 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 9.71k | { | 171 | 9.71k | if (m_capacity <= m_count) | 172 | 134 | { | 173 | 134 | Index newBufferSize = kInitialCount; | 174 | 134 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 134 | reserve(newBufferSize); | 178 | 134 | } | 179 | 9.71k | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 256 | { | 171 | 256 | if (m_capacity <= m_count) | 172 | 160 | { | 173 | 160 | Index newBufferSize = kInitialCount; | 174 | 160 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 160 | reserve(newBufferSize); | 178 | 160 | } | 179 | 256 | } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 209 | { | 171 | 209 | if (m_capacity <= m_count) | 172 | 170 | { | 173 | 170 | Index newBufferSize = kInitialCount; | 174 | 170 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 170 | reserve(newBufferSize); | 178 | 170 | } | 179 | 209 | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 9.54k | { | 171 | 9.54k | if (m_capacity <= m_count) | 172 | 1.83k | { | 173 | 1.83k | Index newBufferSize = kInitialCount; | 174 | 1.83k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.83k | reserve(newBufferSize); | 178 | 1.83k | } | 179 | 9.54k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE19_maybeReserveForAddEv slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 102k | { | 171 | 102k | if (m_capacity <= m_count) | 172 | 98.0k | { | 173 | 98.0k | Index newBufferSize = kInitialCount; | 174 | 98.0k | if (m_capacity) | 175 | 2 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 98.0k | reserve(newBufferSize); | 178 | 98.0k | } | 179 | 102k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 529 | { | 171 | 529 | if (m_capacity <= m_count) | 172 | 54 | { | 173 | 54 | Index newBufferSize = kInitialCount; | 174 | 54 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 54 | reserve(newBufferSize); | 178 | 54 | } | 179 | 529 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 48 | { | 171 | 48 | if (m_capacity <= m_count) | 172 | 48 | { | 173 | 48 | Index newBufferSize = kInitialCount; | 174 | 48 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 48 | reserve(newBufferSize); | 178 | 48 | } | 179 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 10.4k | { | 171 | 10.4k | if (m_capacity <= m_count) | 172 | 71 | { | 173 | 71 | Index newBufferSize = kInitialCount; | 174 | 71 | if (m_capacity) | 175 | 52 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 71 | reserve(newBufferSize); | 178 | 71 | } | 179 | 10.4k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 30 | { | 171 | 30 | if (m_capacity <= m_count) | 172 | 22 | { | 173 | 22 | Index newBufferSize = kInitialCount; | 174 | 22 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 22 | reserve(newBufferSize); | 178 | 22 | } | 179 | 30 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 24 | { | 171 | 24 | if (m_capacity <= m_count) | 172 | 8 | { | 173 | 8 | Index newBufferSize = kInitialCount; | 174 | 8 | if (m_capacity) | 175 | 1 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 8 | reserve(newBufferSize); | 178 | 8 | } | 179 | 24 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 48 | { | 171 | 48 | if (m_capacity <= m_count) | 172 | 48 | { | 173 | 48 | Index newBufferSize = kInitialCount; | 174 | 48 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 48 | reserve(newBufferSize); | 178 | 48 | } | 179 | 48 | } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 151 | { | 171 | 151 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 151 | } |
_ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 926 | { | 171 | 926 | if (m_capacity <= m_count) | 172 | 581 | { | 173 | 581 | Index newBufferSize = kInitialCount; | 174 | 581 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 581 | reserve(newBufferSize); | 178 | 581 | } | 179 | 926 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 926 | { | 171 | 926 | if (m_capacity <= m_count) | 172 | 581 | { | 173 | 581 | Index newBufferSize = kInitialCount; | 174 | 581 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 581 | reserve(newBufferSize); | 178 | 581 | } | 179 | 926 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.85k | { | 171 | 1.85k | if (m_capacity <= m_count) | 172 | 385 | { | 173 | 385 | Index newBufferSize = kInitialCount; | 174 | 385 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 385 | reserve(newBufferSize); | 178 | 385 | } | 179 | 1.85k | } |
_ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 410 | { | 171 | 410 | if (m_capacity <= m_count) | 172 | 390 | { | 173 | 390 | Index newBufferSize = kInitialCount; | 174 | 390 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 390 | reserve(newBufferSize); | 178 | 390 | } | 179 | 410 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 13.8k | { | 171 | 13.8k | if (m_capacity <= m_count) | 172 | 2.86k | { | 173 | 2.86k | Index newBufferSize = kInitialCount; | 174 | 2.86k | if (m_capacity) | 175 | 112 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.86k | reserve(newBufferSize); | 178 | 2.86k | } | 179 | 13.8k | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 447 | { | 171 | 447 | if (m_capacity <= m_count) | 172 | 150 | { | 173 | 150 | Index newBufferSize = kInitialCount; | 174 | 150 | if (m_capacity) | 175 | 8 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 150 | reserve(newBufferSize); | 178 | 150 | } | 179 | 447 | } |
_ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 33.3k | { | 171 | 33.3k | if (m_capacity <= m_count) | 172 | 20.3k | { | 173 | 20.3k | Index newBufferSize = kInitialCount; | 174 | 20.3k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 20.3k | reserve(newBufferSize); | 178 | 20.3k | } | 179 | 33.3k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 243 | { | 171 | 243 | if (m_capacity <= m_count) | 172 | 233 | { | 173 | 233 | Index newBufferSize = kInitialCount; | 174 | 233 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 233 | reserve(newBufferSize); | 178 | 233 | } | 179 | 243 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 513 | { | 171 | 513 | if (m_capacity <= m_count) | 172 | 54 | { | 173 | 54 | Index newBufferSize = kInitialCount; | 174 | 54 | if (m_capacity) | 175 | 27 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 54 | reserve(newBufferSize); | 178 | 54 | } | 179 | 513 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 246 | { | 171 | 246 | if (m_capacity <= m_count) | 172 | 246 | { | 173 | 246 | Index newBufferSize = kInitialCount; | 174 | 246 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 246 | reserve(newBufferSize); | 178 | 246 | } | 179 | 246 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 150 | { | 171 | 150 | if (m_capacity <= m_count) | 172 | 150 | { | 173 | 150 | Index newBufferSize = kInitialCount; | 174 | 150 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 150 | reserve(newBufferSize); | 178 | 150 | } | 179 | 150 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 219 | { | 171 | 219 | if (m_capacity <= m_count) | 172 | 219 | { | 173 | 219 | Index newBufferSize = kInitialCount; | 174 | 219 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 219 | reserve(newBufferSize); | 178 | 219 | } | 179 | 219 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 142 | { | 171 | 142 | if (m_capacity <= m_count) | 172 | 140 | { | 173 | 140 | Index newBufferSize = kInitialCount; | 174 | 140 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 140 | reserve(newBufferSize); | 178 | 140 | } | 179 | 142 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3.23k | { | 171 | 3.23k | if (m_capacity <= m_count) | 172 | 542 | { | 173 | 542 | Index newBufferSize = kInitialCount; | 174 | 542 | if (m_capacity) | 175 | 17 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 542 | reserve(newBufferSize); | 178 | 542 | } | 179 | 3.23k | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 401 | { | 171 | 401 | if (m_capacity <= m_count) | 172 | 381 | { | 173 | 381 | Index newBufferSize = kInitialCount; | 174 | 381 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 381 | reserve(newBufferSize); | 178 | 381 | } | 179 | 401 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.67k | { | 171 | 1.67k | if (m_capacity <= m_count) | 172 | 849 | { | 173 | 849 | Index newBufferSize = kInitialCount; | 174 | 849 | if (m_capacity) | 175 | 12 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 849 | reserve(newBufferSize); | 178 | 849 | } | 179 | 1.67k | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.27k | { | 171 | 1.27k | if (m_capacity <= m_count) | 172 | 757 | { | 173 | 757 | Index newBufferSize = kInitialCount; | 174 | 757 | if (m_capacity) | 175 | 10 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 757 | reserve(newBufferSize); | 178 | 757 | } | 179 | 1.27k | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 802 | { | 171 | 802 | if (m_capacity <= m_count) | 172 | 302 | { | 173 | 302 | Index newBufferSize = kInitialCount; | 174 | 302 | if (m_capacity) | 175 | 12 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 302 | reserve(newBufferSize); | 178 | 302 | } | 179 | 802 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 8 | { | 171 | 8 | if (m_capacity <= m_count) | 172 | 3 | { | 173 | 3 | Index newBufferSize = kInitialCount; | 174 | 3 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3 | reserve(newBufferSize); | 178 | 3 | } | 179 | 8 | } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3 | { | 171 | 3 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 208 | { | 171 | 208 | if (m_capacity <= m_count) | 172 | 50 | { | 173 | 50 | Index newBufferSize = kInitialCount; | 174 | 50 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 50 | reserve(newBufferSize); | 178 | 50 | } | 179 | 208 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 8 | { | 171 | 8 | if (m_capacity <= m_count) | 172 | 4 | { | 173 | 4 | Index newBufferSize = kInitialCount; | 174 | 4 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4 | reserve(newBufferSize); | 178 | 4 | } | 179 | 8 | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 20 | { | 171 | 20 | if (m_capacity <= m_count) | 172 | 10 | { | 173 | 10 | Index newBufferSize = kInitialCount; | 174 | 10 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 10 | reserve(newBufferSize); | 178 | 10 | } | 179 | 20 | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.50k | { | 171 | 2.50k | if (m_capacity <= m_count) | 172 | 2.49k | { | 173 | 2.49k | Index newBufferSize = kInitialCount; | 174 | 2.49k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.49k | reserve(newBufferSize); | 178 | 2.49k | } | 179 | 2.50k | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 51 | { | 171 | 51 | if (m_capacity <= m_count) | 172 | 51 | { | 173 | 51 | Index newBufferSize = kInitialCount; | 174 | 51 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 51 | reserve(newBufferSize); | 178 | 51 | } | 179 | 51 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 72 | { | 171 | 72 | if (m_capacity <= m_count) | 172 | 51 | { | 173 | 51 | Index newBufferSize = kInitialCount; | 174 | 51 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 51 | reserve(newBufferSize); | 178 | 51 | } | 179 | 72 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 72 | { | 171 | 72 | if (m_capacity <= m_count) | 172 | 51 | { | 173 | 51 | Index newBufferSize = kInitialCount; | 174 | 51 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 51 | reserve(newBufferSize); | 178 | 51 | } | 179 | 72 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 58 | { | 171 | 58 | if (m_capacity <= m_count) | 172 | 49 | { | 173 | 49 | Index newBufferSize = kInitialCount; | 174 | 49 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 49 | reserve(newBufferSize); | 178 | 49 | } | 179 | 58 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 24 | { | 171 | 24 | if (m_capacity <= m_count) | 172 | 11 | { | 173 | 11 | Index newBufferSize = kInitialCount; | 174 | 11 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 11 | reserve(newBufferSize); | 178 | 11 | } | 179 | 24 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 22 | { | 171 | 22 | if (m_capacity <= m_count) | 172 | 4 | { | 173 | 4 | Index newBufferSize = kInitialCount; | 174 | 4 | if (m_capacity) | 175 | 1 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 4 | reserve(newBufferSize); | 178 | 4 | } | 179 | 22 | } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.44M | { | 171 | 2.44M | if (m_capacity <= m_count) | 172 | 102k | { | 173 | 102k | Index newBufferSize = kInitialCount; | 174 | 102k | if (m_capacity) | 175 | 72.0k | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 102k | reserve(newBufferSize); | 178 | 102k | } | 179 | 2.44M | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 106 | { | 171 | 106 | if (m_capacity <= m_count) | 172 | 10 | { | 173 | 10 | Index newBufferSize = kInitialCount; | 174 | 10 | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 10 | reserve(newBufferSize); | 178 | 10 | } | 179 | 106 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 113 | { | 171 | 113 | if (m_capacity <= m_count) | 172 | 10 | { | 173 | 10 | Index newBufferSize = kInitialCount; | 174 | 10 | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 10 | reserve(newBufferSize); | 178 | 10 | } | 179 | 113 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.75k | { | 171 | 2.75k | if (m_capacity <= m_count) | 172 | 7 | { | 173 | 7 | Index newBufferSize = kInitialCount; | 174 | 7 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 7 | reserve(newBufferSize); | 178 | 7 | } | 179 | 2.75k | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 344k | { | 171 | 344k | if (m_capacity <= m_count) | 172 | 184 | { | 173 | 184 | Index newBufferSize = kInitialCount; | 174 | 184 | if (m_capacity) | 175 | 135 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 184 | reserve(newBufferSize); | 178 | 184 | } | 179 | 344k | } |
_ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 7.07M | { | 171 | 7.07M | if (m_capacity <= m_count) | 172 | 704 | { | 173 | 704 | Index newBufferSize = kInitialCount; | 174 | 704 | if (m_capacity) | 175 | 651 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 704 | reserve(newBufferSize); | 178 | 704 | } | 179 | 7.07M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 120 | { | 171 | 120 | if (m_capacity <= m_count) | 172 | 69 | { | 173 | 69 | Index newBufferSize = kInitialCount; | 174 | 69 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 69 | reserve(newBufferSize); | 178 | 69 | } | 179 | 120 | } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 324 | { | 171 | 324 | if (m_capacity <= m_count) | 172 | 324 | { | 173 | 324 | Index newBufferSize = kInitialCount; | 174 | 324 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 324 | reserve(newBufferSize); | 178 | 324 | } | 179 | 324 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2 | { | 171 | 2 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 10 | { | 171 | 10 | if (m_capacity <= m_count) | 172 | 10 | { | 173 | 10 | Index newBufferSize = kInitialCount; | 174 | 10 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 10 | reserve(newBufferSize); | 178 | 10 | } | 179 | 10 | } |
_ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 824 | { | 171 | 824 | if (m_capacity <= m_count) | 172 | 412 | { | 173 | 412 | Index newBufferSize = kInitialCount; | 174 | 412 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 412 | reserve(newBufferSize); | 178 | 412 | } | 179 | 824 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E19_maybeReserveForAddEv Line | Count | Source | 170 | 2.68k | { | 171 | 2.68k | if (m_capacity <= m_count) | 172 | 130 | { | 173 | 130 | Index newBufferSize = kInitialCount; | 174 | 130 | if (m_capacity) | 175 | 34 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 130 | reserve(newBufferSize); | 178 | 130 | } | 179 | 2.68k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1 | { | 171 | 1 | if (m_capacity <= m_count) | 172 | 1 | { | 173 | 1 | Index newBufferSize = kInitialCount; | 174 | 1 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1 | reserve(newBufferSize); | 178 | 1 | } | 179 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 838 | { | 171 | 838 | if (m_capacity <= m_count) | 172 | 416 | { | 173 | 416 | Index newBufferSize = kInitialCount; | 174 | 416 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 416 | reserve(newBufferSize); | 178 | 416 | } | 179 | 838 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 20.0k | { | 171 | 20.0k | if (m_capacity <= m_count) | 172 | 189 | { | 173 | 189 | Index newBufferSize = kInitialCount; | 174 | 189 | if (m_capacity) | 175 | 162 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 189 | reserve(newBufferSize); | 178 | 189 | } | 179 | 20.0k | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 729 | { | 171 | 729 | if (m_capacity <= m_count) | 172 | 54 | { | 173 | 54 | Index newBufferSize = kInitialCount; | 174 | 54 | if (m_capacity) | 175 | 27 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 54 | reserve(newBufferSize); | 178 | 54 | } | 179 | 729 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3.20k | { | 171 | 3.20k | if (m_capacity <= m_count) | 172 | 63 | { | 173 | 63 | Index newBufferSize = kInitialCount; | 174 | 63 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 63 | reserve(newBufferSize); | 178 | 63 | } | 179 | 3.20k | } |
_ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 3 | { | 171 | 3 | if (m_capacity <= m_count) | 172 | 2 | { | 173 | 2 | Index newBufferSize = kInitialCount; | 174 | 2 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2 | reserve(newBufferSize); | 178 | 2 | } | 179 | 3 | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 12.6k | { | 171 | 12.6k | if (m_capacity <= m_count) | 172 | 1.18k | { | 173 | 1.18k | Index newBufferSize = kInitialCount; | 174 | 1.18k | if (m_capacity) | 175 | 564 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.18k | reserve(newBufferSize); | 178 | 1.18k | } | 179 | 12.6k | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 1.69k | { | 171 | 1.69k | if (m_capacity <= m_count) | 172 | 273 | { | 173 | 273 | Index newBufferSize = kInitialCount; | 174 | 273 | if (m_capacity) | 175 | 38 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 273 | reserve(newBufferSize); | 178 | 273 | } | 179 | 1.69k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 2.40k | { | 171 | 2.40k | if (m_capacity <= m_count) | 172 | 2.03k | { | 173 | 2.03k | Index newBufferSize = kInitialCount; | 174 | 2.03k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.03k | reserve(newBufferSize); | 178 | 2.03k | } | 179 | 2.40k | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 5.30k | { | 171 | 5.30k | if (m_capacity <= m_count) | 172 | 1.49k | { | 173 | 1.49k | Index newBufferSize = kInitialCount; | 174 | 1.49k | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 1.49k | reserve(newBufferSize); | 178 | 1.49k | } | 179 | 5.30k | } |
_ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 782 | { | 171 | 782 | if (m_capacity <= m_count) | 172 | 9 | { | 173 | 9 | Index newBufferSize = kInitialCount; | 174 | 9 | if (m_capacity) | 175 | 7 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 9 | reserve(newBufferSize); | 178 | 9 | } | 179 | 782 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 20 | { | 171 | 20 | if (m_capacity <= m_count) | 172 | 20 | { | 173 | 20 | Index newBufferSize = kInitialCount; | 174 | 20 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 20 | reserve(newBufferSize); | 178 | 20 | } | 179 | 20 | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 68 | { | 171 | 68 | if (m_capacity <= m_count) | 172 | 21 | { | 173 | 21 | Index newBufferSize = kInitialCount; | 174 | 21 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 21 | reserve(newBufferSize); | 178 | 21 | } | 179 | 68 | } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 158 | { | 171 | 158 | if (m_capacity <= m_count) | 172 | 158 | { | 173 | 158 | Index newBufferSize = kInitialCount; | 174 | 158 | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 158 | reserve(newBufferSize); | 178 | 158 | } | 179 | 158 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 105k | { | 171 | 105k | if (m_capacity <= m_count) | 172 | 18.0k | { | 173 | 18.0k | Index newBufferSize = kInitialCount; | 174 | 18.0k | if (m_capacity) | 175 | 3 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 18.0k | reserve(newBufferSize); | 178 | 18.0k | } | 179 | 105k | } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 6.71k | { | 171 | 6.71k | if (m_capacity <= m_count) | 172 | 2.37k | { | 173 | 2.37k | Index newBufferSize = kInitialCount; | 174 | 2.37k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 2.37k | reserve(newBufferSize); | 178 | 2.37k | } | 179 | 6.71k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 44.5k | { | 171 | 44.5k | if (m_capacity <= m_count) | 172 | 283 | { | 173 | 283 | Index newBufferSize = kInitialCount; | 174 | 283 | if (m_capacity) | 175 | 200 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 283 | reserve(newBufferSize); | 178 | 283 | } | 179 | 44.5k | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 17.2k | { | 171 | 17.2k | if (m_capacity <= m_count) | 172 | 537 | { | 173 | 537 | Index newBufferSize = kInitialCount; | 174 | 537 | if (m_capacity) | 175 | 70 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 537 | reserve(newBufferSize); | 178 | 537 | } | 179 | 17.2k | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 21.3k | { | 171 | 21.3k | if (m_capacity <= m_count) | 172 | 3.06k | { | 173 | 3.06k | Index newBufferSize = kInitialCount; | 174 | 3.06k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.06k | reserve(newBufferSize); | 178 | 3.06k | } | 179 | 21.3k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE19_maybeReserveForAddEv Unexecuted instantiation: _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE19_maybeReserveForAddEv _ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE19_maybeReserveForAddEv Line | Count | Source | 170 | 20.2k | { | 171 | 20.2k | if (m_capacity <= m_count) | 172 | 3.03k | { | 173 | 3.03k | Index newBufferSize = kInitialCount; | 174 | 3.03k | if (m_capacity) | 175 | 0 | newBufferSize = (m_capacity << 1); | 176 | | | 177 | 3.03k | reserve(newBufferSize); | 178 | 3.03k | } | 179 | 20.2k | } |
|
180 | | |
181 | | void add(T&& obj) |
182 | 9.37M | { |
183 | 9.37M | _maybeReserveForAdd(); |
184 | 9.37M | m_buffer[m_count++] = static_cast<T&&>(obj); |
185 | 9.37M | } _ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE3addEOS6_ Line | Count | Source | 182 | 440 | { | 183 | 440 | _maybeReserveForAdd(); | 184 | 440 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 440 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 849k | { | 183 | 849k | _maybeReserveForAdd(); | 184 | 849k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 849k | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 3.96M | { | 183 | 3.96M | _maybeReserveForAdd(); | 184 | 3.96M | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 3.96M | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1.73M | { | 183 | 1.73M | _maybeReserveForAdd(); | 184 | 1.73M | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.73M | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 318k | { | 183 | 318k | _maybeReserveForAdd(); | 184 | 318k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 318k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 30 | { | 183 | 30 | _maybeReserveForAdd(); | 184 | 30 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 30 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 776 | { | 183 | 776 | _maybeReserveForAdd(); | 184 | 776 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 776 | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 5.31k | { | 183 | 5.31k | _maybeReserveForAdd(); | 184 | 5.31k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 5.31k | } |
_ZN5Slang4ListIbNS_17StandardAllocatorEE3addEOb Line | Count | Source | 182 | 153 | { | 183 | 153 | _maybeReserveForAdd(); | 184 | 153 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 153 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE3addEOS2_ Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 341 | { | 183 | 341 | _maybeReserveForAdd(); | 184 | 341 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 341 | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 2.15k | { | 183 | 2.15k | _maybeReserveForAdd(); | 184 | 2.15k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2.15k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 15.7k | { | 183 | 15.7k | _maybeReserveForAdd(); | 184 | 15.7k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 15.7k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 3 | { | 183 | 3 | _maybeReserveForAdd(); | 184 | 3 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 3 | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 13 | { | 183 | 13 | _maybeReserveForAdd(); | 184 | 13 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 13 | } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 8 | { | 183 | 8 | _maybeReserveForAdd(); | 184 | 8 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 8 | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 7 | { | 183 | 7 | _maybeReserveForAdd(); | 184 | 7 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 7 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 12 | { | 183 | 12 | _maybeReserveForAdd(); | 184 | 12 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 12 | } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE3addEOS4_ Line | Count | Source | 182 | 11 | { | 183 | 11 | _maybeReserveForAdd(); | 184 | 11 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 11 | } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 51 | { | 183 | 51 | _maybeReserveForAdd(); | 184 | 51 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 51 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 222k | { | 183 | 222k | _maybeReserveForAdd(); | 184 | 222k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 222k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 981k | { | 183 | 981k | _maybeReserveForAdd(); | 184 | 981k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 981k | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 362 | { | 183 | 362 | _maybeReserveForAdd(); | 184 | 362 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 362 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 999 | { | 183 | 999 | _maybeReserveForAdd(); | 184 | 999 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 999 | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 32.5k | { | 183 | 32.5k | _maybeReserveForAdd(); | 184 | 32.5k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 32.5k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 360 | { | 183 | 360 | _maybeReserveForAdd(); | 184 | 360 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 360 | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 142 | { | 183 | 142 | _maybeReserveForAdd(); | 184 | 142 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 142 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE3addEOS2_ Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListIlNS_17StandardAllocatorEE3addEOl Line | Count | Source | 182 | 3.74k | { | 183 | 3.74k | _maybeReserveForAdd(); | 184 | 3.74k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 3.74k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 10 | { | 183 | 10 | _maybeReserveForAdd(); | 184 | 10 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 10 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE3addEOj Line | Count | Source | 182 | 37.3k | { | 183 | 37.3k | _maybeReserveForAdd(); | 184 | 37.3k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 37.3k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 12.3k | { | 183 | 12.3k | _maybeReserveForAdd(); | 184 | 12.3k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 12.3k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 27 | { | 183 | 27 | _maybeReserveForAdd(); | 184 | 27 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 27 | } |
_ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 50 | { | 183 | 50 | _maybeReserveForAdd(); | 184 | 50 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 50 | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE3addEOh Line | Count | Source | 182 | 39.1k | { | 183 | 39.1k | _maybeReserveForAdd(); | 184 | 39.1k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 39.1k | } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 6 | { | 183 | 6 | _maybeReserveForAdd(); | 184 | 6 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 6 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 81 | { | 183 | 81 | _maybeReserveForAdd(); | 184 | 81 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 81 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 1.79k | { | 183 | 1.79k | _maybeReserveForAdd(); | 184 | 1.79k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.79k | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 30 | { | 183 | 30 | _maybeReserveForAdd(); | 184 | 30 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 30 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 329k | { | 183 | 329k | _maybeReserveForAdd(); | 184 | 329k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 329k | } |
_ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 564 | { | 183 | 564 | _maybeReserveForAdd(); | 184 | 564 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 564 | } |
_ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 21 | { | 183 | 21 | _maybeReserveForAdd(); | 184 | 21 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 21 | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 266 | { | 183 | 266 | _maybeReserveForAdd(); | 184 | 266 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 266 | } |
Unexecuted instantiation: _ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE3addEOS8_ _ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 60 | { | 183 | 60 | _maybeReserveForAdd(); | 184 | 60 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 60 | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 32.1k | { | 183 | 32.1k | _maybeReserveForAdd(); | 184 | 32.1k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 32.1k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1 | { | 183 | 1 | _maybeReserveForAdd(); | 184 | 1 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1 | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 2 | { | 183 | 2 | _maybeReserveForAdd(); | 184 | 2 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 440k | { | 183 | 440k | _maybeReserveForAdd(); | 184 | 440k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 440k | } |
slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE3addEOSD_ Line | Count | Source | 182 | 1 | { | 183 | 1 | _maybeReserveForAdd(); | 184 | 1 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 223 | { | 183 | 223 | _maybeReserveForAdd(); | 184 | 223 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 223 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE3addEOS5_ Line | Count | Source | 182 | 1 | { | 183 | 1 | _maybeReserveForAdd(); | 184 | 1 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 11 | { | 183 | 11 | _maybeReserveForAdd(); | 184 | 11 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 11 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 6 | { | 183 | 6 | _maybeReserveForAdd(); | 184 | 6 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE3addEOS4_ Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE3addEOS4_ _ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1.01k | { | 183 | 1.01k | _maybeReserveForAdd(); | 184 | 1.01k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.01k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE3addEOS4_ Line | Count | Source | 182 | 117 | { | 183 | 117 | _maybeReserveForAdd(); | 184 | 117 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 117 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE3addEOS4_ Line | Count | Source | 182 | 231 | { | 183 | 231 | _maybeReserveForAdd(); | 184 | 231 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 231 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 434 | { | 183 | 434 | _maybeReserveForAdd(); | 184 | 434 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 434 | } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 9.05k | { | 183 | 9.05k | _maybeReserveForAdd(); | 184 | 9.05k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 9.05k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEE3addEOS2_ slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 42.8k | { | 183 | 42.8k | _maybeReserveForAdd(); | 184 | 42.8k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 42.8k | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE3addEOS7_ Line | Count | Source | 182 | 30 | { | 183 | 30 | _maybeReserveForAdd(); | 184 | 30 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 30 | } |
Unexecuted instantiation: _ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE3addEOS4_ _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE3addEOS8_ Line | Count | Source | 182 | 9.71k | { | 183 | 9.71k | _maybeReserveForAdd(); | 184 | 9.71k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 9.71k | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 256 | { | 183 | 256 | _maybeReserveForAdd(); | 184 | 256 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 256 | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 9.53k | { | 183 | 9.53k | _maybeReserveForAdd(); | 184 | 9.53k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 9.53k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 5.37k | { | 183 | 5.37k | _maybeReserveForAdd(); | 184 | 5.37k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 5.37k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 33 | { | 183 | 33 | _maybeReserveForAdd(); | 184 | 33 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 33 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 15 | { | 183 | 15 | _maybeReserveForAdd(); | 184 | 15 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 15 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 48 | { | 183 | 48 | _maybeReserveForAdd(); | 184 | 48 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 48 | } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE3addEOS6_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE3addEOS2_ _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 151 | { | 183 | 151 | _maybeReserveForAdd(); | 184 | 151 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 151 | } |
_ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1.85k | { | 183 | 1.85k | _maybeReserveForAdd(); | 184 | 1.85k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.85k | } |
_ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 410 | { | 183 | 410 | _maybeReserveForAdd(); | 184 | 410 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 410 | } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 916 | { | 183 | 916 | _maybeReserveForAdd(); | 184 | 916 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 916 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 2 | { | 183 | 2 | _maybeReserveForAdd(); | 184 | 2 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2 | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 447 | { | 183 | 447 | _maybeReserveForAdd(); | 184 | 447 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 447 | } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 243 | { | 183 | 243 | _maybeReserveForAdd(); | 184 | 243 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 243 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 513 | { | 183 | 513 | _maybeReserveForAdd(); | 184 | 513 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 513 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 3.23k | { | 183 | 3.23k | _maybeReserveForAdd(); | 184 | 3.23k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 3.23k | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 802 | { | 183 | 802 | _maybeReserveForAdd(); | 184 | 802 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 802 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE3addEOS3_ Unexecuted instantiation: _ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE3addEOS1_ Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 692 | { | 183 | 692 | _maybeReserveForAdd(); | 184 | 692 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 692 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 24 | { | 183 | 24 | _maybeReserveForAdd(); | 184 | 24 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 24 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE3addEOS5_ Line | Count | Source | 182 | 22 | { | 183 | 22 | _maybeReserveForAdd(); | 184 | 22 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 22 | } |
_ZN5Slang4ListImNS_17StandardAllocatorEE3addEOm Line | Count | Source | 182 | 269 | { | 183 | 269 | _maybeReserveForAdd(); | 184 | 269 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 269 | } |
_ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 931 | { | 183 | 931 | _maybeReserveForAdd(); | 184 | 931 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 931 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 228k | { | 183 | 228k | _maybeReserveForAdd(); | 184 | 228k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 228k | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE3addEOS1_ Line | Count | Source | 182 | 120 | { | 183 | 120 | _maybeReserveForAdd(); | 184 | 120 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 120 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE3addEOS1_ _ZN5Slang4ListIPKvNS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 1 | { | 183 | 1 | _maybeReserveForAdd(); | 184 | 1 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E3addEOS2_ Line | Count | Source | 182 | 2.68k | { | 183 | 2.68k | _maybeReserveForAdd(); | 184 | 2.68k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 2.68k | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 837 | { | 183 | 837 | _maybeReserveForAdd(); | 184 | 837 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 837 | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 12.6k | { | 183 | 12.6k | _maybeReserveForAdd(); | 184 | 12.6k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 12.6k | } |
_ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 1.98k | { | 183 | 1.98k | _maybeReserveForAdd(); | 184 | 1.98k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 1.98k | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE3addEOS2_ Line | Count | Source | 182 | 5.30k | { | 183 | 5.30k | _maybeReserveForAdd(); | 184 | 5.30k | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 5.30k | } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 20 | { | 183 | 20 | _maybeReserveForAdd(); | 184 | 20 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 20 | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE3addEOS3_ Line | Count | Source | 182 | 68 | { | 183 | 68 | _maybeReserveForAdd(); | 184 | 68 | m_buffer[m_count++] = static_cast<T&&>(obj); | 185 | 68 | } |
Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE3addEOS2_ Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE3addEOS1_ Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE3addEOS3_ |
186 | | |
187 | | void add(const T& obj) |
188 | 102M | { |
189 | 102M | _maybeReserveForAdd(); |
190 | 102M | m_buffer[m_count++] = obj; |
191 | 102M | } _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 6 | { | 189 | 6 | _maybeReserveForAdd(); | 190 | 6 | m_buffer[m_count++] = obj; | 191 | 6 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 5.43k | { | 189 | 5.43k | _maybeReserveForAdd(); | 190 | 5.43k | m_buffer[m_count++] = obj; | 191 | 5.43k | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 74.3k | { | 189 | 74.3k | _maybeReserveForAdd(); | 190 | 74.3k | m_buffer[m_count++] = obj; | 191 | 74.3k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 148k | { | 189 | 148k | _maybeReserveForAdd(); | 190 | 148k | m_buffer[m_count++] = obj; | 191 | 148k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 6.42k | { | 189 | 6.42k | _maybeReserveForAdd(); | 190 | 6.42k | m_buffer[m_count++] = obj; | 191 | 6.42k | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 120 | { | 189 | 120 | _maybeReserveForAdd(); | 190 | 120 | m_buffer[m_count++] = obj; | 191 | 120 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 31.6M | { | 189 | 31.6M | _maybeReserveForAdd(); | 190 | 31.6M | m_buffer[m_count++] = obj; | 191 | 31.6M | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2.87k | { | 189 | 2.87k | _maybeReserveForAdd(); | 190 | 2.87k | m_buffer[m_count++] = obj; | 191 | 2.87k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.97k | { | 189 | 1.97k | _maybeReserveForAdd(); | 190 | 1.97k | m_buffer[m_count++] = obj; | 191 | 1.97k | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 2.20k | { | 189 | 2.20k | _maybeReserveForAdd(); | 190 | 2.20k | m_buffer[m_count++] = obj; | 191 | 2.20k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE3addERKS3_ _ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 1.37M | { | 189 | 1.37M | _maybeReserveForAdd(); | 190 | 1.37M | m_buffer[m_count++] = obj; | 191 | 1.37M | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 431k | { | 189 | 431k | _maybeReserveForAdd(); | 190 | 431k | m_buffer[m_count++] = obj; | 191 | 431k | } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 7.70k | { | 189 | 7.70k | _maybeReserveForAdd(); | 190 | 7.70k | m_buffer[m_count++] = obj; | 191 | 7.70k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 66.3k | { | 189 | 66.3k | _maybeReserveForAdd(); | 190 | 66.3k | m_buffer[m_count++] = obj; | 191 | 66.3k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE3addERKS3_ _ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 137 | { | 189 | 137 | _maybeReserveForAdd(); | 190 | 137 | m_buffer[m_count++] = obj; | 191 | 137 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.88k | { | 189 | 1.88k | _maybeReserveForAdd(); | 190 | 1.88k | m_buffer[m_count++] = obj; | 191 | 1.88k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 172k | { | 189 | 172k | _maybeReserveForAdd(); | 190 | 172k | m_buffer[m_count++] = obj; | 191 | 172k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 23.0k | { | 189 | 23.0k | _maybeReserveForAdd(); | 190 | 23.0k | m_buffer[m_count++] = obj; | 191 | 23.0k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 412 | { | 189 | 412 | _maybeReserveForAdd(); | 190 | 412 | m_buffer[m_count++] = obj; | 191 | 412 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 408 | { | 189 | 408 | _maybeReserveForAdd(); | 190 | 408 | m_buffer[m_count++] = obj; | 191 | 408 | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 315k | { | 189 | 315k | _maybeReserveForAdd(); | 190 | 315k | m_buffer[m_count++] = obj; | 191 | 315k | } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 26.3k | { | 189 | 26.3k | _maybeReserveForAdd(); | 190 | 26.3k | m_buffer[m_count++] = obj; | 191 | 26.3k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.29M | { | 189 | 1.29M | _maybeReserveForAdd(); | 190 | 1.29M | m_buffer[m_count++] = obj; | 191 | 1.29M | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 167k | { | 189 | 167k | _maybeReserveForAdd(); | 190 | 167k | m_buffer[m_count++] = obj; | 191 | 167k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 1.20M | { | 189 | 1.20M | _maybeReserveForAdd(); | 190 | 1.20M | m_buffer[m_count++] = obj; | 191 | 1.20M | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 411 | { | 189 | 411 | _maybeReserveForAdd(); | 190 | 411 | m_buffer[m_count++] = obj; | 191 | 411 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 679 | { | 189 | 679 | _maybeReserveForAdd(); | 190 | 679 | m_buffer[m_count++] = obj; | 191 | 679 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 4.37k | { | 189 | 4.37k | _maybeReserveForAdd(); | 190 | 4.37k | m_buffer[m_count++] = obj; | 191 | 4.37k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 380k | { | 189 | 380k | _maybeReserveForAdd(); | 190 | 380k | m_buffer[m_count++] = obj; | 191 | 380k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 177 | { | 189 | 177 | _maybeReserveForAdd(); | 190 | 177 | m_buffer[m_count++] = obj; | 191 | 177 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 33 | { | 189 | 33 | _maybeReserveForAdd(); | 190 | 33 | m_buffer[m_count++] = obj; | 191 | 33 | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 6.56k | { | 189 | 6.56k | _maybeReserveForAdd(); | 190 | 6.56k | m_buffer[m_count++] = obj; | 191 | 6.56k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 4 | { | 189 | 4 | _maybeReserveForAdd(); | 190 | 4 | m_buffer[m_count++] = obj; | 191 | 4 | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 7.14M | { | 189 | 7.14M | _maybeReserveForAdd(); | 190 | 7.14M | m_buffer[m_count++] = obj; | 191 | 7.14M | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 54 | { | 189 | 54 | _maybeReserveForAdd(); | 190 | 54 | m_buffer[m_count++] = obj; | 191 | 54 | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 96 | { | 189 | 96 | _maybeReserveForAdd(); | 190 | 96 | m_buffer[m_count++] = obj; | 191 | 96 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE3addERKS1_ Unexecuted instantiation: _ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 684 | { | 189 | 684 | _maybeReserveForAdd(); | 190 | 684 | m_buffer[m_count++] = obj; | 191 | 684 | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 91 | { | 189 | 91 | _maybeReserveForAdd(); | 190 | 91 | m_buffer[m_count++] = obj; | 191 | 91 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 960 | { | 189 | 960 | _maybeReserveForAdd(); | 190 | 960 | m_buffer[m_count++] = obj; | 191 | 960 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 268 | { | 189 | 268 | _maybeReserveForAdd(); | 190 | 268 | m_buffer[m_count++] = obj; | 191 | 268 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE3addERKS3_ _ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 9 | { | 189 | 9 | _maybeReserveForAdd(); | 190 | 9 | m_buffer[m_count++] = obj; | 191 | 9 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 55 | { | 189 | 55 | _maybeReserveForAdd(); | 190 | 55 | m_buffer[m_count++] = obj; | 191 | 55 | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 12.7k | { | 189 | 12.7k | _maybeReserveForAdd(); | 190 | 12.7k | m_buffer[m_count++] = obj; | 191 | 12.7k | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 142 | { | 189 | 142 | _maybeReserveForAdd(); | 190 | 142 | m_buffer[m_count++] = obj; | 191 | 142 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2.74k | { | 189 | 2.74k | _maybeReserveForAdd(); | 190 | 2.74k | m_buffer[m_count++] = obj; | 191 | 2.74k | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 53.0k | { | 189 | 53.0k | _maybeReserveForAdd(); | 190 | 53.0k | m_buffer[m_count++] = obj; | 191 | 53.0k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEE3addERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE3addERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 22.4k | { | 189 | 22.4k | _maybeReserveForAdd(); | 190 | 22.4k | m_buffer[m_count++] = obj; | 191 | 22.4k | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 170 | { | 189 | 170 | _maybeReserveForAdd(); | 190 | 170 | m_buffer[m_count++] = obj; | 191 | 170 | } |
_ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE3addERKj Line | Count | Source | 188 | 55.9k | { | 189 | 55.9k | _maybeReserveForAdd(); | 190 | 55.9k | m_buffer[m_count++] = obj; | 191 | 55.9k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 304 | { | 189 | 304 | _maybeReserveForAdd(); | 190 | 304 | m_buffer[m_count++] = obj; | 191 | 304 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E3addERKS3_ Line | Count | Source | 188 | 4 | { | 189 | 4 | _maybeReserveForAdd(); | 190 | 4 | m_buffer[m_count++] = obj; | 191 | 4 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 8 | { | 189 | 8 | _maybeReserveForAdd(); | 190 | 8 | m_buffer[m_count++] = obj; | 191 | 8 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E3addERKS3_ Line | Count | Source | 188 | 4 | { | 189 | 4 | _maybeReserveForAdd(); | 190 | 4 | m_buffer[m_count++] = obj; | 191 | 4 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 76.9k | { | 189 | 76.9k | _maybeReserveForAdd(); | 190 | 76.9k | m_buffer[m_count++] = obj; | 191 | 76.9k | } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 10 | { | 189 | 10 | _maybeReserveForAdd(); | 190 | 10 | m_buffer[m_count++] = obj; | 191 | 10 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 29 | { | 189 | 29 | _maybeReserveForAdd(); | 190 | 29 | m_buffer[m_count++] = obj; | 191 | 29 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 3 | { | 189 | 3 | _maybeReserveForAdd(); | 190 | 3 | m_buffer[m_count++] = obj; | 191 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 52 | { | 189 | 52 | _maybeReserveForAdd(); | 190 | 52 | m_buffer[m_count++] = obj; | 191 | 52 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 27 | { | 189 | 27 | _maybeReserveForAdd(); | 190 | 27 | m_buffer[m_count++] = obj; | 191 | 27 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.72M | { | 189 | 1.72M | _maybeReserveForAdd(); | 190 | 1.72M | m_buffer[m_count++] = obj; | 191 | 1.72M | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 33.5k | { | 189 | 33.5k | _maybeReserveForAdd(); | 190 | 33.5k | m_buffer[m_count++] = obj; | 191 | 33.5k | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 83.3k | { | 189 | 83.3k | _maybeReserveForAdd(); | 190 | 83.3k | m_buffer[m_count++] = obj; | 191 | 83.3k | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 43 | { | 189 | 43 | _maybeReserveForAdd(); | 190 | 43 | m_buffer[m_count++] = obj; | 191 | 43 | } |
_ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 4 | { | 189 | 4 | _maybeReserveForAdd(); | 190 | 4 | m_buffer[m_count++] = obj; | 191 | 4 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 311 | { | 189 | 311 | _maybeReserveForAdd(); | 190 | 311 | m_buffer[m_count++] = obj; | 191 | 311 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 46 | { | 189 | 46 | _maybeReserveForAdd(); | 190 | 46 | m_buffer[m_count++] = obj; | 191 | 46 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E3addERKSH_ Line | Count | Source | 188 | 167 | { | 189 | 167 | _maybeReserveForAdd(); | 190 | 167 | m_buffer[m_count++] = obj; | 191 | 167 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 7.82k | { | 189 | 7.82k | _maybeReserveForAdd(); | 190 | 7.82k | m_buffer[m_count++] = obj; | 191 | 7.82k | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 317 | { | 189 | 317 | _maybeReserveForAdd(); | 190 | 317 | m_buffer[m_count++] = obj; | 191 | 317 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 813 | { | 189 | 813 | _maybeReserveForAdd(); | 190 | 813 | m_buffer[m_count++] = obj; | 191 | 813 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 381 | { | 189 | 381 | _maybeReserveForAdd(); | 190 | 381 | m_buffer[m_count++] = obj; | 191 | 381 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE3addERKSC_ Line | Count | Source | 188 | 7 | { | 189 | 7 | _maybeReserveForAdd(); | 190 | 7 | m_buffer[m_count++] = obj; | 191 | 7 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2.63k | { | 189 | 2.63k | _maybeReserveForAdd(); | 190 | 2.63k | m_buffer[m_count++] = obj; | 191 | 2.63k | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE3addERKSG_ Line | Count | Source | 188 | 104k | { | 189 | 104k | _maybeReserveForAdd(); | 190 | 104k | m_buffer[m_count++] = obj; | 191 | 104k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 149 | { | 189 | 149 | _maybeReserveForAdd(); | 190 | 149 | m_buffer[m_count++] = obj; | 191 | 149 | } |
_ZN5Slang4ListImNS_17StandardAllocatorEE3addERKm Line | Count | Source | 188 | 5.15M | { | 189 | 5.15M | _maybeReserveForAdd(); | 190 | 5.15M | m_buffer[m_count++] = obj; | 191 | 5.15M | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE3addERKS4_ Line | Count | Source | 188 | 207 | { | 189 | 207 | _maybeReserveForAdd(); | 190 | 207 | m_buffer[m_count++] = obj; | 191 | 207 | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 18 | { | 189 | 18 | _maybeReserveForAdd(); | 190 | 18 | m_buffer[m_count++] = obj; | 191 | 18 | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 3.15k | { | 189 | 3.15k | _maybeReserveForAdd(); | 190 | 3.15k | m_buffer[m_count++] = obj; | 191 | 3.15k | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 48 | { | 189 | 48 | _maybeReserveForAdd(); | 190 | 48 | m_buffer[m_count++] = obj; | 191 | 48 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 139 | { | 189 | 139 | _maybeReserveForAdd(); | 190 | 139 | m_buffer[m_count++] = obj; | 191 | 139 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 88.9k | { | 189 | 88.9k | _maybeReserveForAdd(); | 190 | 88.9k | m_buffer[m_count++] = obj; | 191 | 88.9k | } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 84 | { | 189 | 84 | _maybeReserveForAdd(); | 190 | 84 | m_buffer[m_count++] = obj; | 191 | 84 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 208 | { | 189 | 208 | _maybeReserveForAdd(); | 190 | 208 | m_buffer[m_count++] = obj; | 191 | 208 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 46 | { | 189 | 46 | _maybeReserveForAdd(); | 190 | 46 | m_buffer[m_count++] = obj; | 191 | 46 | } |
_ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 70 | { | 189 | 70 | _maybeReserveForAdd(); | 190 | 70 | m_buffer[m_count++] = obj; | 191 | 70 | } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE3addERKl Line | Count | Source | 188 | 22.4M | { | 189 | 22.4M | _maybeReserveForAdd(); | 190 | 22.4M | m_buffer[m_count++] = obj; | 191 | 22.4M | } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 904 | { | 189 | 904 | _maybeReserveForAdd(); | 190 | 904 | m_buffer[m_count++] = obj; | 191 | 904 | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 255 | { | 189 | 255 | _maybeReserveForAdd(); | 190 | 255 | m_buffer[m_count++] = obj; | 191 | 255 | } |
_ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 1.74k | { | 189 | 1.74k | _maybeReserveForAdd(); | 190 | 1.74k | m_buffer[m_count++] = obj; | 191 | 1.74k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE3addERKS3_ Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE3addERKS3_ _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 959 | { | 189 | 959 | _maybeReserveForAdd(); | 190 | 959 | m_buffer[m_count++] = obj; | 191 | 959 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 534 | { | 189 | 534 | _maybeReserveForAdd(); | 190 | 534 | m_buffer[m_count++] = obj; | 191 | 534 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 53 | { | 189 | 53 | _maybeReserveForAdd(); | 190 | 53 | m_buffer[m_count++] = obj; | 191 | 53 | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 184 | { | 189 | 184 | _maybeReserveForAdd(); | 190 | 184 | m_buffer[m_count++] = obj; | 191 | 184 | } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 24 | { | 189 | 24 | _maybeReserveForAdd(); | 190 | 24 | m_buffer[m_count++] = obj; | 191 | 24 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE3addERKS4_ Line | Count | Source | 188 | 7 | { | 189 | 7 | _maybeReserveForAdd(); | 190 | 7 | m_buffer[m_count++] = obj; | 191 | 7 | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 84.0k | { | 189 | 84.0k | _maybeReserveForAdd(); | 190 | 84.0k | m_buffer[m_count++] = obj; | 191 | 84.0k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 7.83k | { | 189 | 7.83k | _maybeReserveForAdd(); | 190 | 7.83k | m_buffer[m_count++] = obj; | 191 | 7.83k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 3.57k | { | 189 | 3.57k | _maybeReserveForAdd(); | 190 | 3.57k | m_buffer[m_count++] = obj; | 191 | 3.57k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 74 | { | 189 | 74 | _maybeReserveForAdd(); | 190 | 74 | m_buffer[m_count++] = obj; | 191 | 74 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 6 | { | 189 | 6 | _maybeReserveForAdd(); | 190 | 6 | m_buffer[m_count++] = obj; | 191 | 6 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 10 | { | 189 | 10 | _maybeReserveForAdd(); | 190 | 10 | m_buffer[m_count++] = obj; | 191 | 10 | } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 41 | { | 189 | 41 | _maybeReserveForAdd(); | 190 | 41 | m_buffer[m_count++] = obj; | 191 | 41 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 76 | { | 189 | 76 | _maybeReserveForAdd(); | 190 | 76 | m_buffer[m_count++] = obj; | 191 | 76 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 209 | { | 189 | 209 | _maybeReserveForAdd(); | 190 | 209 | m_buffer[m_count++] = obj; | 191 | 209 | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 14 | { | 189 | 14 | _maybeReserveForAdd(); | 190 | 14 | m_buffer[m_count++] = obj; | 191 | 14 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE3addERKS2_ slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE3addERKS5_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 102k | { | 189 | 102k | _maybeReserveForAdd(); | 190 | 102k | m_buffer[m_count++] = obj; | 191 | 102k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 496 | { | 189 | 496 | _maybeReserveForAdd(); | 190 | 496 | m_buffer[m_count++] = obj; | 191 | 496 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 33 | { | 189 | 33 | _maybeReserveForAdd(); | 190 | 33 | m_buffer[m_count++] = obj; | 191 | 33 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE3addERKS1_ Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE3addERKS1_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 10.4k | { | 189 | 10.4k | _maybeReserveForAdd(); | 190 | 10.4k | m_buffer[m_count++] = obj; | 191 | 10.4k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 30 | { | 189 | 30 | _maybeReserveForAdd(); | 190 | 30 | m_buffer[m_count++] = obj; | 191 | 30 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 24 | { | 189 | 24 | _maybeReserveForAdd(); | 190 | 24 | m_buffer[m_count++] = obj; | 191 | 24 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 926 | { | 189 | 926 | _maybeReserveForAdd(); | 190 | 926 | m_buffer[m_count++] = obj; | 191 | 926 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 926 | { | 189 | 926 | _maybeReserveForAdd(); | 190 | 926 | m_buffer[m_count++] = obj; | 191 | 926 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEE3addERKS4_ _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 13.8k | { | 189 | 13.8k | _maybeReserveForAdd(); | 190 | 13.8k | m_buffer[m_count++] = obj; | 191 | 13.8k | } |
_ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 33.3k | { | 189 | 33.3k | _maybeReserveForAdd(); | 190 | 33.3k | m_buffer[m_count++] = obj; | 191 | 33.3k | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 111 | { | 189 | 111 | _maybeReserveForAdd(); | 190 | 111 | m_buffer[m_count++] = obj; | 191 | 111 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 246 | { | 189 | 246 | _maybeReserveForAdd(); | 190 | 246 | m_buffer[m_count++] = obj; | 191 | 246 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 150 | { | 189 | 150 | _maybeReserveForAdd(); | 190 | 150 | m_buffer[m_count++] = obj; | 191 | 150 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 219 | { | 189 | 219 | _maybeReserveForAdd(); | 190 | 219 | m_buffer[m_count++] = obj; | 191 | 219 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 142 | { | 189 | 142 | _maybeReserveForAdd(); | 190 | 142 | m_buffer[m_count++] = obj; | 191 | 142 | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 401 | { | 189 | 401 | _maybeReserveForAdd(); | 190 | 401 | m_buffer[m_count++] = obj; | 191 | 401 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 1.67k | { | 189 | 1.67k | _maybeReserveForAdd(); | 190 | 1.67k | m_buffer[m_count++] = obj; | 191 | 1.67k | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 1.27k | { | 189 | 1.27k | _maybeReserveForAdd(); | 190 | 1.27k | m_buffer[m_count++] = obj; | 191 | 1.27k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 8 | { | 189 | 8 | _maybeReserveForAdd(); | 190 | 8 | m_buffer[m_count++] = obj; | 191 | 8 | } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 3 | { | 189 | 3 | _maybeReserveForAdd(); | 190 | 3 | m_buffer[m_count++] = obj; | 191 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE3addERKS1_ Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE3addERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 208 | { | 189 | 208 | _maybeReserveForAdd(); | 190 | 208 | m_buffer[m_count++] = obj; | 191 | 208 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 8 | { | 189 | 8 | _maybeReserveForAdd(); | 190 | 8 | m_buffer[m_count++] = obj; | 191 | 8 | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 20 | { | 189 | 20 | _maybeReserveForAdd(); | 190 | 20 | m_buffer[m_count++] = obj; | 191 | 20 | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 2.50k | { | 189 | 2.50k | _maybeReserveForAdd(); | 190 | 2.50k | m_buffer[m_count++] = obj; | 191 | 2.50k | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE3addERKS5_ Line | Count | Source | 188 | 51 | { | 189 | 51 | _maybeReserveForAdd(); | 190 | 51 | m_buffer[m_count++] = obj; | 191 | 51 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 72 | { | 189 | 72 | _maybeReserveForAdd(); | 190 | 72 | m_buffer[m_count++] = obj; | 191 | 72 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 72 | { | 189 | 72 | _maybeReserveForAdd(); | 190 | 72 | m_buffer[m_count++] = obj; | 191 | 72 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 58 | { | 189 | 58 | _maybeReserveForAdd(); | 190 | 58 | m_buffer[m_count++] = obj; | 191 | 58 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE3addERKS4_ _ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 2.44M | { | 189 | 2.44M | _maybeReserveForAdd(); | 190 | 2.44M | m_buffer[m_count++] = obj; | 191 | 2.44M | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE3addERKS4_ Line | Count | Source | 188 | 106 | { | 189 | 106 | _maybeReserveForAdd(); | 190 | 106 | m_buffer[m_count++] = obj; | 191 | 106 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 113 | { | 189 | 113 | _maybeReserveForAdd(); | 190 | 113 | m_buffer[m_count++] = obj; | 191 | 113 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 2.75k | { | 189 | 2.75k | _maybeReserveForAdd(); | 190 | 2.75k | m_buffer[m_count++] = obj; | 191 | 2.75k | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 344k | { | 189 | 344k | _maybeReserveForAdd(); | 190 | 344k | m_buffer[m_count++] = obj; | 191 | 344k | } |
_ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 7.07M | { | 189 | 7.07M | _maybeReserveForAdd(); | 190 | 7.07M | m_buffer[m_count++] = obj; | 191 | 7.07M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE3addERKh Line | Count | Source | 188 | 17.8M | { | 189 | 17.8M | _maybeReserveForAdd(); | 190 | 17.8M | m_buffer[m_count++] = obj; | 191 | 17.8M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 324 | { | 189 | 324 | _maybeReserveForAdd(); | 190 | 324 | m_buffer[m_count++] = obj; | 191 | 324 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 2 | { | 189 | 2 | _maybeReserveForAdd(); | 190 | 2 | m_buffer[m_count++] = obj; | 191 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E3addERKS2_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 10 | { | 189 | 10 | _maybeReserveForAdd(); | 190 | 10 | m_buffer[m_count++] = obj; | 191 | 10 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEE3addERKS4_ _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEE3addERKS4_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEE3addERKS4_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 1 | { | 189 | 1 | _maybeReserveForAdd(); | 190 | 1 | m_buffer[m_count++] = obj; | 191 | 1 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 20.0k | { | 189 | 20.0k | _maybeReserveForAdd(); | 190 | 20.0k | m_buffer[m_count++] = obj; | 191 | 20.0k | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 729 | { | 189 | 729 | _maybeReserveForAdd(); | 190 | 729 | m_buffer[m_count++] = obj; | 191 | 729 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 3.20k | { | 189 | 3.20k | _maybeReserveForAdd(); | 190 | 3.20k | m_buffer[m_count++] = obj; | 191 | 3.20k | } |
_ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 3 | { | 189 | 3 | _maybeReserveForAdd(); | 190 | 3 | m_buffer[m_count++] = obj; | 191 | 3 | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 1.69k | { | 189 | 1.69k | _maybeReserveForAdd(); | 190 | 1.69k | m_buffer[m_count++] = obj; | 191 | 1.69k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 424 | { | 189 | 424 | _maybeReserveForAdd(); | 190 | 424 | m_buffer[m_count++] = obj; | 191 | 424 | } |
_ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE3addERKS3_ Line | Count | Source | 188 | 782 | { | 189 | 782 | _maybeReserveForAdd(); | 190 | 782 | m_buffer[m_count++] = obj; | 191 | 782 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE3addERKS1_ _ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 158 | { | 189 | 158 | _maybeReserveForAdd(); | 190 | 158 | m_buffer[m_count++] = obj; | 191 | 158 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE3addERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE3addERKS3_ _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 105k | { | 189 | 105k | _maybeReserveForAdd(); | 190 | 105k | m_buffer[m_count++] = obj; | 191 | 105k | } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 6.71k | { | 189 | 6.71k | _maybeReserveForAdd(); | 190 | 6.71k | m_buffer[m_count++] = obj; | 191 | 6.71k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 44.5k | { | 189 | 44.5k | _maybeReserveForAdd(); | 190 | 44.5k | m_buffer[m_count++] = obj; | 191 | 44.5k | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE3addERKS1_ Line | Count | Source | 188 | 17.0k | { | 189 | 17.0k | _maybeReserveForAdd(); | 190 | 17.0k | m_buffer[m_count++] = obj; | 191 | 17.0k | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 21.3k | { | 189 | 21.3k | _maybeReserveForAdd(); | 190 | 21.3k | m_buffer[m_count++] = obj; | 191 | 21.3k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE3addERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE3addERKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE3addERKS2_ _ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE3addERKS2_ Line | Count | Source | 188 | 20.2k | { | 189 | 20.2k | _maybeReserveForAdd(); | 190 | 20.2k | m_buffer[m_count++] = obj; | 191 | 20.2k | } |
|
192 | | |
193 | 158M | Index getCount() const { return m_count; }_ZNK5Slang4ListImNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 65.4M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 116k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIhNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 16.1M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIlNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 61.7k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 15 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 505 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 11.9k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 7.55k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.38M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 29.6M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3.21k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3.40k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 31.5M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_3ValENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 33.2k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 111k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 218 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.76k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 493 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3.35k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 200 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 96 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIjNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 121k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 38.2k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3.58k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.55M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_5TokenENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.75k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 47 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 795 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_4NameENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 781 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 267 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 6.77k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3.79k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 13.5k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 941k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.06M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 177 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 4 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.02k | Index getCount() const { return m_count; } |
slang-check-decl.cpp:_ZNK5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.18k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 21.0k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 46 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.06M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 714 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 602 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.37k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 524 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 723 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.29k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 74 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 53.0k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 62.8k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 31 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE8getCountEv slang-emit-cpp.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 362 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 6 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 80.4k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPjNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 81 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.19k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.08k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 417 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 5 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 34 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.39M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_4EdgeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 577 | Index getCount() const { return m_count; } |
slang-ir-autodiff-primal-hoist.cpp:_ZNK5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E8getCountEv Line | Count | Source | 193 | 180 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.32k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 39.6k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 305 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 201k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.79k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 103 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 71 | Index getCount() const { return m_count; } |
slang-ir-call-graph.cpp:_ZNK5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 104k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.92k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 24.8k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 71 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 14 | Index getCount() const { return m_count; } |
slang-ir-glsl-legalize.cpp:_ZNK5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 59 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 117 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_8LegalValENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 31 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 48 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 30 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.11k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 231 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 10.7k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 687 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 21.4k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 44 | Index getCount() const { return m_count; } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE8getCountEv slang-ir-simplify-cfg.cpp:_ZNK5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 84.6k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 102 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 8 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 55 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 9.84k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 7.52k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 42.5k | Index getCount() const { return m_count; } |
slang-ir.cpp:_ZNK5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 200k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 945 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 54 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 109 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 11.7k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 33 | Index getCount() const { return m_count; } |
Unexecuted instantiation: slang-language-server.cpp:_ZNK5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 19 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_7CommandENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 178 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.11k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 110 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 3 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 21.3k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.45k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 360 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.10k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.16k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPKcNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 1.35k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 282 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.73k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 42 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 30 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.45k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 105 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 5.62k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 123 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 963 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 148 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 211 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 10 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 102 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 376 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListIcNS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 8.30k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 113 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 400k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 980 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 5.19k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 4.45M | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 16.5k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.40k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 50 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E8getCountEv Line | Count | Source | 193 | 780 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 828 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 40.0k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9NameValueENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 27 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 2.40k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 24 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 5.52k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 5.30k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 782 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 545 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 85.3k | Index getCount() const { return m_count; } |
slang-doc-extractor.cpp:_ZNK5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E8getCountEv Line | Count | Source | 193 | 28 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 634 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 750 | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 380 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListIPKwNS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_8OSStringENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 150k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 44.4k | Index getCount() const { return m_count; } |
_ZNK5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 9.49k | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZNK5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE8getCountEv _ZNK5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE8getCountEv Line | Count | Source | 193 | 21 | Index getCount() const { return m_count; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_9EnumerantENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_11OperandKindENS_17StandardAllocatorEE8getCountEv Unexecuted instantiation: _ZNK5Slang4ListINS_11InstructionENS_17StandardAllocatorEE8getCountEv |
194 | 71.8k | Index getCapacity() const { return m_capacity; }_ZNK5Slang4ListIhNS_17StandardAllocatorEE11getCapacityEv Line | Count | Source | 194 | 71.8k | Index getCapacity() const { return m_capacity; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_7OperandENS_17StandardAllocatorEE11getCapacityEv |
195 | | template<typename Predicate> |
196 | | Index countIf(Predicate predicate) const |
197 | | { |
198 | | Index count = 0; |
199 | | for (Index i = 0; i < getCount(); ++i) |
200 | | { |
201 | | if (predicate((*this)[i])) |
202 | | count++; |
203 | | } |
204 | | return count; |
205 | | } |
206 | | |
207 | | |
208 | 47.6k | const T* getBuffer() const { return m_buffer; }_ZNK5Slang4ListIhNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 5.24k | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_3ValENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 3 | const T* getBuffer() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE9getBufferEv _ZNK5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 857 | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 20.8k | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 74 | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 743 | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListIjNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 3.78k | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListIcNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 48 | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 5.26k | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 5.19k | const T* getBuffer() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE9getBufferEv _ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 268 | const T* getBuffer() const { return m_buffer; } |
_ZNK5Slang4ListImNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 121 | const T* getBuffer() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE9getBufferEv _ZNK5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 5.09k | const T* getBuffer() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE9getBufferEv _ZNK5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 208 | 6 | const T* getBuffer() const { return m_buffer; } |
Unexecuted instantiation: _ZNK5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE9getBufferEv |
209 | 7.12M | T* getBuffer() { return m_buffer; }_ZN5Slang4ListImNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 4.00M | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 1.63M | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_E9getBufferEv Line | Count | Source | 209 | 111k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 125k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 200 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 3.58k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 1.08M | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 95 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 28 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 2.28k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 24.8k | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPjNS_17StandardAllocatorEE9getBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 417 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 5 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 27.1k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 2 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 31 | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE9getBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE9getBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 71 | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE9getBufferEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 945 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 662 | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 240 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 13.7k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 69 | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 463 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 418 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 2.37k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 24 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 1 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 424 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 5 | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 8 | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE9getBufferEv _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 70.0k | T* getBuffer() { return m_buffer; } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE9getBufferEv Line | Count | Source | 209 | 12.9k | T* getBuffer() { return m_buffer; } |
Unexecuted instantiation: _ZN5Slang4ListIlNS_17StandardAllocatorEE9getBufferEv |
210 | | |
211 | | bool operator==(const ThisType& rhs) const |
212 | 514 | { |
213 | 514 | if (&rhs == this) |
214 | 0 | { |
215 | 0 | return true; |
216 | 0 | } |
217 | 514 | const Index count = getCount(); |
218 | 514 | if (count != rhs.getCount()) |
219 | 16 | { |
220 | 16 | return false; |
221 | 16 | } |
222 | 2.00k | for (Index i = 0; i < count; ++i) |
223 | 1.50k | { |
224 | 1.50k | if ((*this)[i] != rhs[i]) |
225 | 0 | { |
226 | 0 | return false; |
227 | 0 | } |
228 | 1.50k | } |
229 | 498 | return true; |
230 | 498 | } _ZNK5Slang4ListIjNS_17StandardAllocatorEEeqERKS2_ Line | Count | Source | 212 | 499 | { | 213 | 499 | if (&rhs == this) | 214 | 0 | { | 215 | 0 | return true; | 216 | 0 | } | 217 | 499 | const Index count = getCount(); | 218 | 499 | if (count != rhs.getCount()) | 219 | 16 | { | 220 | 16 | return false; | 221 | 16 | } | 222 | 1.94k | for (Index i = 0; i < count; ++i) | 223 | 1.46k | { | 224 | 1.46k | if ((*this)[i] != rhs[i]) | 225 | 0 | { | 226 | 0 | return false; | 227 | 0 | } | 228 | 1.46k | } | 229 | 483 | return true; | 230 | 483 | } |
Unexecuted instantiation: _ZNK5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEeqERKS3_ Unexecuted instantiation: _ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEeqERKS3_ _ZNK5Slang4ListIlNS_17StandardAllocatorEEeqERKS2_ Line | Count | Source | 212 | 3 | { | 213 | 3 | if (&rhs == this) | 214 | 0 | { | 215 | 0 | return true; | 216 | 0 | } | 217 | 3 | const Index count = getCount(); | 218 | 3 | if (count != rhs.getCount()) | 219 | 0 | { | 220 | 0 | return false; | 221 | 0 | } | 222 | 15 | for (Index i = 0; i < count; ++i) | 223 | 12 | { | 224 | 12 | if ((*this)[i] != rhs[i]) | 225 | 0 | { | 226 | 0 | return false; | 227 | 0 | } | 228 | 12 | } | 229 | 3 | return true; | 230 | 3 | } |
_ZNK5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEEeqERKS4_ Line | Count | Source | 212 | 9 | { | 213 | 9 | if (&rhs == this) | 214 | 0 | { | 215 | 0 | return true; | 216 | 0 | } | 217 | 9 | const Index count = getCount(); | 218 | 9 | if (count != rhs.getCount()) | 219 | 0 | { | 220 | 0 | return false; | 221 | 0 | } | 222 | 33 | for (Index i = 0; i < count; ++i) | 223 | 24 | { | 224 | 24 | if ((*this)[i] != rhs[i]) | 225 | 0 | { | 226 | 0 | return false; | 227 | 0 | } | 228 | 24 | } | 229 | 9 | return true; | 230 | 9 | } |
_ZNK5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEEeqERKS4_ Line | Count | Source | 212 | 3 | { | 213 | 3 | if (&rhs == this) | 214 | 0 | { | 215 | 0 | return true; | 216 | 0 | } | 217 | 3 | const Index count = getCount(); | 218 | 3 | if (count != rhs.getCount()) | 219 | 0 | { | 220 | 0 | return false; | 221 | 0 | } | 222 | 12 | for (Index i = 0; i < count; ++i) | 223 | 9 | { | 224 | 9 | if ((*this)[i] != rhs[i]) | 225 | 0 | { | 226 | 0 | return false; | 227 | 0 | } | 228 | 9 | } | 229 | 3 | return true; | 230 | 3 | } |
|
231 | 3 | SLANG_FORCE_INLINE bool operator!=(const ThisType& rhs) const { return !(*this == rhs); } |
232 | | |
233 | 349 | void insert(Index idx, const T& val) { insertRange(idx, &val, 1); }_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE6insertElRKS2_ Line | Count | Source | 233 | 5 | void insert(Index idx, const T& val) { insertRange(idx, &val, 1); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE6insertElRKS2_ Unexecuted instantiation: _ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE6insertElRKS1_ _ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE6insertElRKS2_ Line | Count | Source | 233 | 341 | void insert(Index idx, const T& val) { insertRange(idx, &val, 1); } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE6insertElRKS2_ Line | Count | Source | 233 | 3 | void insert(Index idx, const T& val) { insertRange(idx, &val, 1); } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE6insertElRKS2_ |
234 | | |
235 | | void insertRange(Index idx, const T* vals, Index n) |
236 | 14.1M | { |
237 | 14.1M | if (m_capacity < m_count + n) |
238 | 13.5M | { |
239 | 13.5M | Index newBufferCount = kInitialCount; |
240 | 13.6M | while (newBufferCount < m_count + n) |
241 | 133k | newBufferCount = newBufferCount << 1; |
242 | | |
243 | 13.5M | T* newBuffer = _allocate(newBufferCount); |
244 | 13.5M | if (m_capacity) |
245 | 24.3k | { |
246 | | /*if (std::has_trivial_copy_assign<T>::value && |
247 | | std::has_trivial_destructor<T>::value) |
248 | | { |
249 | | memcpy(newBuffer, buffer, sizeof(T) * id); |
250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); |
251 | | } |
252 | | else*/ |
253 | 24.3k | { |
254 | 2.63M | for (Index i = 0; i < idx; i++) |
255 | 2.61M | newBuffer[i] = m_buffer[i]; |
256 | 24.3k | for (Index i = idx; i < m_count; i++) |
257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); |
258 | 24.3k | } |
259 | 24.3k | _deallocateBuffer(); |
260 | 24.3k | } |
261 | 13.5M | m_buffer = newBuffer; |
262 | 13.5M | m_capacity = newBufferCount; |
263 | 13.5M | } |
264 | 647k | else |
265 | 647k | { |
266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) |
267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); |
268 | | else*/ |
269 | 647k | { |
270 | 647k | for (Index i = m_count; i > idx; i--) |
271 | 51 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); |
272 | 647k | } |
273 | 647k | } |
274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) |
275 | | memcpy(buffer + id, vals, sizeof(T) * n); |
276 | | else*/ |
277 | 70.4M | for (Index i = 0; i < n; i++) |
278 | 56.2M | m_buffer[idx + i] = vals[i]; |
279 | | |
280 | 14.1M | m_count += n; |
281 | 14.1M | } _ZN5Slang4ListImNS_17StandardAllocatorEE11insertRangeElPKml Line | Count | Source | 236 | 13.0M | { | 237 | 13.0M | if (m_capacity < m_count + n) | 238 | 13.0M | { | 239 | 13.0M | Index newBufferCount = kInitialCount; | 240 | 13.0M | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 13.0M | T* newBuffer = _allocate(newBufferCount); | 244 | 13.0M | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 13.0M | m_buffer = newBuffer; | 262 | 13.0M | m_capacity = newBufferCount; | 263 | 13.0M | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 38.4M | for (Index i = 0; i < n; i++) | 278 | 25.4M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 13.0M | m_count += n; | 281 | 13.0M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE11insertRangeElPKhl Line | Count | Source | 236 | 297k | { | 237 | 297k | if (m_capacity < m_count + n) | 238 | 29.8k | { | 239 | 29.8k | Index newBufferCount = kInitialCount; | 240 | 92.9k | while (newBufferCount < m_count + n) | 241 | 63.1k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 29.8k | T* newBuffer = _allocate(newBufferCount); | 244 | 29.8k | if (m_capacity) | 245 | 23.6k | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 23.6k | { | 254 | 1.67M | for (Index i = 0; i < idx; i++) | 255 | 1.64M | newBuffer[i] = m_buffer[i]; | 256 | 23.6k | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 23.6k | } | 259 | 23.6k | _deallocateBuffer(); | 260 | 23.6k | } | 261 | 29.8k | m_buffer = newBuffer; | 262 | 29.8k | m_capacity = newBufferCount; | 263 | 29.8k | } | 264 | 268k | else | 265 | 268k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 268k | { | 270 | 268k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 268k | } | 273 | 268k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 3.30M | for (Index i = 0; i < n; i++) | 278 | 3.00M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 297k | m_count += n; | 281 | 297k | } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 69 | { | 237 | 69 | if (m_capacity < m_count + n) | 238 | 69 | { | 239 | 69 | Index newBufferCount = kInitialCount; | 240 | 681 | while (newBufferCount < m_count + n) | 241 | 612 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 69 | T* newBuffer = _allocate(newBufferCount); | 244 | 69 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 69 | m_buffer = newBuffer; | 262 | 69 | m_capacity = newBufferCount; | 263 | 69 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 883k | for (Index i = 0; i < n; i++) | 278 | 883k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 69 | m_count += n; | 281 | 69 | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 42.2k | { | 237 | 42.2k | if (m_capacity < m_count + n) | 238 | 7.83k | { | 239 | 7.83k | Index newBufferCount = kInitialCount; | 240 | 8.06k | while (newBufferCount < m_count + n) | 241 | 221 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 7.83k | T* newBuffer = _allocate(newBufferCount); | 244 | 7.83k | if (m_capacity) | 245 | 7 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 7 | { | 254 | 3.76k | for (Index i = 0; i < idx; i++) | 255 | 3.75k | newBuffer[i] = m_buffer[i]; | 256 | 7 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 7 | } | 259 | 7 | _deallocateBuffer(); | 260 | 7 | } | 261 | 7.83k | m_buffer = newBuffer; | 262 | 7.83k | m_capacity = newBufferCount; | 263 | 7.83k | } | 264 | 34.4k | else | 265 | 34.4k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 34.4k | { | 270 | 34.4k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 34.4k | } | 273 | 34.4k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 89.7k | for (Index i = 0; i < n; i++) | 278 | 47.4k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 42.2k | m_count += n; | 281 | 42.2k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 20.6k | { | 237 | 20.6k | if (m_capacity < m_count + n) | 238 | 20.6k | { | 239 | 20.6k | Index newBufferCount = kInitialCount; | 240 | 20.6k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 20.6k | T* newBuffer = _allocate(newBufferCount); | 244 | 20.6k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 20.6k | m_buffer = newBuffer; | 262 | 20.6k | m_capacity = newBufferCount; | 263 | 20.6k | } | 264 | 29 | else | 265 | 29 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 29 | { | 270 | 29 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 29 | } | 273 | 29 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 100k | for (Index i = 0; i < n; i++) | 278 | 80.0k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 20.6k | m_count += n; | 281 | 20.6k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 3.13k | { | 237 | 3.13k | if (m_capacity < m_count + n) | 238 | 719 | { | 239 | 719 | Index newBufferCount = kInitialCount; | 240 | 719 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 719 | T* newBuffer = _allocate(newBufferCount); | 244 | 719 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 719 | m_buffer = newBuffer; | 262 | 719 | m_capacity = newBufferCount; | 263 | 719 | } | 264 | 2.41k | else | 265 | 2.41k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 2.41k | { | 270 | 2.41k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 2.41k | } | 273 | 2.41k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 3.84k | for (Index i = 0; i < n; i++) | 278 | 719 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 3.13k | m_count += n; | 281 | 3.13k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 6.18k | { | 237 | 6.18k | if (m_capacity < m_count + n) | 238 | 4.91k | { | 239 | 4.91k | Index newBufferCount = kInitialCount; | 240 | 4.91k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 4.91k | T* newBuffer = _allocate(newBufferCount); | 244 | 4.91k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 4.91k | m_buffer = newBuffer; | 262 | 4.91k | m_capacity = newBufferCount; | 263 | 4.91k | } | 264 | 1.27k | else | 265 | 1.27k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 1.27k | { | 270 | 1.27k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 1.27k | } | 273 | 1.27k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 13.8k | for (Index i = 0; i < n; i++) | 278 | 7.64k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 6.18k | m_count += n; | 281 | 6.18k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 5.83k | { | 237 | 5.83k | if (m_capacity < m_count + n) | 238 | 5.80k | { | 239 | 5.80k | Index newBufferCount = kInitialCount; | 240 | 5.80k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 5.80k | T* newBuffer = _allocate(newBufferCount); | 244 | 5.80k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 5.80k | m_buffer = newBuffer; | 262 | 5.80k | m_capacity = newBufferCount; | 263 | 5.80k | } | 264 | 28 | else | 265 | 28 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 28 | { | 270 | 28 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 28 | } | 273 | 28 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 17.4k | for (Index i = 0; i < n; i++) | 278 | 11.6k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 5.83k | m_count += n; | 281 | 5.83k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 306k | { | 237 | 306k | if (m_capacity < m_count + n) | 238 | 303k | { | 239 | 303k | Index newBufferCount = kInitialCount; | 240 | 303k | while (newBufferCount < m_count + n) | 241 | 36 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 303k | T* newBuffer = _allocate(newBufferCount); | 244 | 303k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 303k | m_buffer = newBuffer; | 262 | 303k | m_capacity = newBufferCount; | 263 | 303k | } | 264 | 2.94k | else | 265 | 2.94k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 2.94k | { | 270 | 2.95k | for (Index i = m_count; i > idx; i--) | 271 | 8 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 2.94k | } | 273 | 2.94k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 646k | for (Index i = 0; i < n; i++) | 278 | 340k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 306k | m_count += n; | 281 | 306k | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE11insertRangeElPKll Line | Count | Source | 236 | 247 | { | 237 | 247 | if (m_capacity < m_count + n) | 238 | 229 | { | 239 | 229 | Index newBufferCount = kInitialCount; | 240 | 231 | while (newBufferCount < m_count + n) | 241 | 2 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 229 | T* newBuffer = _allocate(newBufferCount); | 244 | 229 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 229 | m_buffer = newBuffer; | 262 | 229 | m_capacity = newBufferCount; | 263 | 229 | } | 264 | 18 | else | 265 | 18 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 18 | { | 270 | 18 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 18 | } | 273 | 18 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 550 | for (Index i = 0; i < n; i++) | 278 | 303 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 247 | m_count += n; | 281 | 247 | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 19 | { | 237 | 19 | if (m_capacity < m_count + n) | 238 | 12 | { | 239 | 12 | Index newBufferCount = kInitialCount; | 240 | 12 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 12 | T* newBuffer = _allocate(newBufferCount); | 244 | 12 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 12 | m_buffer = newBuffer; | 262 | 12 | m_capacity = newBufferCount; | 263 | 12 | } | 264 | 7 | else | 265 | 7 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 7 | { | 270 | 32 | for (Index i = m_count; i > idx; i--) | 271 | 25 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 7 | } | 273 | 7 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 50 | for (Index i = 0; i < n; i++) | 278 | 31 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 19 | m_count += n; | 281 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE11insertRangeElPKS1_l Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 8.34k | { | 237 | 8.34k | if (m_capacity < m_count + n) | 238 | 7.14k | { | 239 | 7.14k | Index newBufferCount = kInitialCount; | 240 | 15.5k | while (newBufferCount < m_count + n) | 241 | 8.42k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 7.14k | T* newBuffer = _allocate(newBufferCount); | 244 | 7.14k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 7.14k | m_buffer = newBuffer; | 262 | 7.14k | m_capacity = newBufferCount; | 263 | 7.14k | } | 264 | 1.20k | else | 265 | 1.20k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 1.20k | { | 270 | 1.20k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 1.20k | } | 273 | 1.20k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 355k | for (Index i = 0; i < n; i++) | 278 | 347k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 8.34k | m_count += n; | 281 | 8.34k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 9 | { | 237 | 9 | if (m_capacity < m_count + n) | 238 | 8 | { | 239 | 8 | Index newBufferCount = kInitialCount; | 240 | 8 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 8 | T* newBuffer = _allocate(newBufferCount); | 244 | 8 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 8 | m_buffer = newBuffer; | 262 | 8 | m_capacity = newBufferCount; | 263 | 8 | } | 264 | 1 | else | 265 | 1 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 1 | { | 270 | 1 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 1 | } | 273 | 1 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 27 | for (Index i = 0; i < n; i++) | 278 | 18 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 9 | m_count += n; | 281 | 9 | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 33.3k | { | 237 | 33.3k | if (m_capacity < m_count + n) | 238 | 33.2k | { | 239 | 33.2k | Index newBufferCount = kInitialCount; | 240 | 33.2k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 33.2k | T* newBuffer = _allocate(newBufferCount); | 244 | 33.2k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 33.2k | m_buffer = newBuffer; | 262 | 33.2k | m_capacity = newBufferCount; | 263 | 33.2k | } | 264 | 55 | else | 265 | 55 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 55 | { | 270 | 55 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 55 | } | 273 | 55 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 89.3k | for (Index i = 0; i < n; i++) | 278 | 55.9k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 33.3k | m_count += n; | 281 | 33.3k | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 341 | { | 237 | 341 | if (m_capacity < m_count + n) | 238 | 323 | { | 239 | 323 | Index newBufferCount = kInitialCount; | 240 | 323 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 323 | T* newBuffer = _allocate(newBufferCount); | 244 | 323 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 323 | m_buffer = newBuffer; | 262 | 323 | m_capacity = newBufferCount; | 263 | 323 | } | 264 | 18 | else | 265 | 18 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 18 | { | 270 | 36 | for (Index i = m_count; i > idx; i--) | 271 | 18 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 18 | } | 273 | 18 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 682 | for (Index i = 0; i < n; i++) | 278 | 341 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 341 | m_count += n; | 281 | 341 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 310k | { | 237 | 310k | if (m_capacity < m_count + n) | 238 | 54.5k | { | 239 | 54.5k | Index newBufferCount = kInitialCount; | 240 | 81.6k | while (newBufferCount < m_count + n) | 241 | 27.1k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 54.5k | T* newBuffer = _allocate(newBufferCount); | 244 | 54.5k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 54.5k | m_buffer = newBuffer; | 262 | 54.5k | m_capacity = newBufferCount; | 263 | 54.5k | } | 264 | 256k | else | 265 | 256k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 256k | { | 270 | 256k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 256k | } | 273 | 256k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 930k | for (Index i = 0; i < n; i++) | 278 | 620k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 310k | m_count += n; | 281 | 310k | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE11insertRangeElPKS3_l Line | Count | Source | 236 | 2.98k | { | 237 | 2.98k | if (m_capacity < m_count + n) | 238 | 2.97k | { | 239 | 2.97k | Index newBufferCount = kInitialCount; | 240 | 2.97k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 2.97k | T* newBuffer = _allocate(newBufferCount); | 244 | 2.97k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 2.97k | m_buffer = newBuffer; | 262 | 2.97k | m_capacity = newBufferCount; | 263 | 2.97k | } | 264 | 7 | else | 265 | 7 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 7 | { | 270 | 7 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 7 | } | 273 | 7 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 8.82k | for (Index i = 0; i < n; i++) | 278 | 5.83k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 2.98k | m_count += n; | 281 | 2.98k | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 30 | { | 237 | 30 | if (m_capacity < m_count + n) | 238 | 4 | { | 239 | 4 | Index newBufferCount = kInitialCount; | 240 | 4 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 4 | T* newBuffer = _allocate(newBufferCount); | 244 | 4 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 4 | m_buffer = newBuffer; | 262 | 4 | m_capacity = newBufferCount; | 263 | 4 | } | 264 | 26 | else | 265 | 26 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 26 | { | 270 | 26 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 26 | } | 273 | 26 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 42 | for (Index i = 0; i < n; i++) | 278 | 12 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 30 | m_count += n; | 281 | 30 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE11insertRangeElPKS1_l _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 3 | { | 237 | 3 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 3 | else | 265 | 3 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 3 | { | 270 | 3 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 3 | } | 273 | 3 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 3 | for (Index i = 0; i < n; i++) | 278 | 0 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 3 | m_count += n; | 281 | 3 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE11insertRangeElPKS3_l Line | Count | Source | 236 | 74 | { | 237 | 74 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 74 | else | 265 | 74 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 74 | { | 270 | 74 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 74 | } | 273 | 74 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 74 | for (Index i = 0; i < n; i++) | 278 | 0 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 74 | m_count += n; | 281 | 74 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE11insertRangeElPKS2_l Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE11insertRangeElPKS1_l Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIjNS_17StandardAllocatorEE11insertRangeElPKjl Line | Count | Source | 236 | 27.8k | { | 237 | 27.8k | if (m_capacity < m_count + n) | 238 | 7.89k | { | 239 | 7.89k | Index newBufferCount = kInitialCount; | 240 | 9.53k | while (newBufferCount < m_count + n) | 241 | 1.64k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 7.89k | T* newBuffer = _allocate(newBufferCount); | 244 | 7.89k | if (m_capacity) | 245 | 296 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 296 | { | 254 | 49.9k | for (Index i = 0; i < idx; i++) | 255 | 49.6k | newBuffer[i] = m_buffer[i]; | 256 | 296 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 296 | } | 259 | 296 | _deallocateBuffer(); | 260 | 296 | } | 261 | 7.89k | m_buffer = newBuffer; | 262 | 7.89k | m_capacity = newBufferCount; | 263 | 7.89k | } | 264 | 19.9k | else | 265 | 19.9k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 19.9k | { | 270 | 19.9k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 19.9k | } | 273 | 19.9k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 3.04M | for (Index i = 0; i < n; i++) | 278 | 3.02M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 27.8k | m_count += n; | 281 | 27.8k | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 4 | { | 237 | 4 | if (m_capacity < m_count + n) | 238 | 4 | { | 239 | 4 | Index newBufferCount = kInitialCount; | 240 | 4 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 4 | T* newBuffer = _allocate(newBufferCount); | 244 | 4 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 4 | m_buffer = newBuffer; | 262 | 4 | m_capacity = newBufferCount; | 263 | 4 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 12 | for (Index i = 0; i < n; i++) | 278 | 8 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 4 | m_count += n; | 281 | 4 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 4 | { | 237 | 4 | if (m_capacity < m_count + n) | 238 | 4 | { | 239 | 4 | Index newBufferCount = kInitialCount; | 240 | 4 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 4 | T* newBuffer = _allocate(newBufferCount); | 244 | 4 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 4 | m_buffer = newBuffer; | 262 | 4 | m_capacity = newBufferCount; | 263 | 4 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 12 | for (Index i = 0; i < n; i++) | 278 | 8 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 4 | m_count += n; | 281 | 4 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 626 | { | 237 | 626 | if (m_capacity < m_count + n) | 238 | 588 | { | 239 | 588 | Index newBufferCount = kInitialCount; | 240 | 588 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 588 | T* newBuffer = _allocate(newBufferCount); | 244 | 588 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 588 | m_buffer = newBuffer; | 262 | 588 | m_capacity = newBufferCount; | 263 | 588 | } | 264 | 38 | else | 265 | 38 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 38 | { | 270 | 38 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 38 | } | 273 | 38 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.25k | for (Index i = 0; i < n; i++) | 278 | 626 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 626 | m_count += n; | 281 | 626 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 334 | { | 237 | 334 | if (m_capacity < m_count + n) | 238 | 163 | { | 239 | 163 | Index newBufferCount = kInitialCount; | 240 | 286 | while (newBufferCount < m_count + n) | 241 | 123 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 163 | T* newBuffer = _allocate(newBufferCount); | 244 | 163 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 163 | m_buffer = newBuffer; | 262 | 163 | m_capacity = newBufferCount; | 263 | 163 | } | 264 | 171 | else | 265 | 171 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 171 | { | 270 | 171 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 171 | } | 273 | 171 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 2.96k | for (Index i = 0; i < n; i++) | 278 | 2.63k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 334 | m_count += n; | 281 | 334 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE11insertRangeElPKS3_l Line | Count | Source | 236 | 421 | { | 237 | 421 | if (m_capacity < m_count + n) | 238 | 418 | { | 239 | 418 | Index newBufferCount = kInitialCount; | 240 | 418 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 418 | T* newBuffer = _allocate(newBufferCount); | 244 | 418 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 418 | m_buffer = newBuffer; | 262 | 418 | m_capacity = newBufferCount; | 263 | 418 | } | 264 | 3 | else | 265 | 3 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 3 | { | 270 | 3 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 3 | } | 273 | 3 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.27k | for (Index i = 0; i < n; i++) | 278 | 855 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 421 | m_count += n; | 281 | 421 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 91 | { | 237 | 91 | if (m_capacity < m_count + n) | 238 | 91 | { | 239 | 91 | Index newBufferCount = kInitialCount; | 240 | 91 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 91 | T* newBuffer = _allocate(newBufferCount); | 244 | 91 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 91 | m_buffer = newBuffer; | 262 | 91 | m_capacity = newBufferCount; | 263 | 91 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 182 | for (Index i = 0; i < n; i++) | 278 | 91 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 91 | m_count += n; | 281 | 91 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 22 | { | 237 | 22 | if (m_capacity < m_count + n) | 238 | 22 | { | 239 | 22 | Index newBufferCount = kInitialCount; | 240 | 22 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 22 | T* newBuffer = _allocate(newBufferCount); | 244 | 22 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 22 | m_buffer = newBuffer; | 262 | 22 | m_capacity = newBufferCount; | 263 | 22 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 44 | for (Index i = 0; i < n; i++) | 278 | 22 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 22 | m_count += n; | 281 | 22 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 1.31k | { | 237 | 1.31k | if (m_capacity < m_count + n) | 238 | 818 | { | 239 | 818 | Index newBufferCount = kInitialCount; | 240 | 818 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 818 | T* newBuffer = _allocate(newBufferCount); | 244 | 818 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 818 | m_buffer = newBuffer; | 262 | 818 | m_capacity = newBufferCount; | 263 | 818 | } | 264 | 498 | else | 265 | 498 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 498 | { | 270 | 498 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 498 | } | 273 | 498 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 2.20k | for (Index i = 0; i < n; i++) | 278 | 891 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 1.31k | m_count += n; | 281 | 1.31k | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 1.22k | { | 237 | 1.22k | if (m_capacity < m_count + n) | 238 | 1.17k | { | 239 | 1.17k | Index newBufferCount = kInitialCount; | 240 | 1.17k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 1.17k | T* newBuffer = _allocate(newBufferCount); | 244 | 1.17k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 1.17k | m_buffer = newBuffer; | 262 | 1.17k | m_capacity = newBufferCount; | 263 | 1.17k | } | 264 | 46 | else | 265 | 46 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 46 | { | 270 | 46 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 46 | } | 273 | 46 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 2.59k | for (Index i = 0; i < n; i++) | 278 | 1.37k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 1.22k | m_count += n; | 281 | 1.22k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 27.4k | { | 237 | 27.4k | if (m_capacity < m_count + n) | 238 | 27.0k | { | 239 | 27.0k | Index newBufferCount = kInitialCount; | 240 | 33.3k | while (newBufferCount < m_count + n) | 241 | 6.33k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 27.0k | T* newBuffer = _allocate(newBufferCount); | 244 | 27.0k | if (m_capacity) | 245 | 113 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 113 | { | 254 | 695 | for (Index i = 0; i < idx; i++) | 255 | 582 | newBuffer[i] = m_buffer[i]; | 256 | 113 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 113 | } | 259 | 113 | _deallocateBuffer(); | 260 | 113 | } | 261 | 27.0k | m_buffer = newBuffer; | 262 | 27.0k | m_capacity = newBufferCount; | 263 | 27.0k | } | 264 | 361 | else | 265 | 361 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 361 | { | 270 | 361 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 361 | } | 273 | 361 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 511k | for (Index i = 0; i < n; i++) | 278 | 484k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 27.4k | m_count += n; | 281 | 27.4k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 231 | { | 237 | 231 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 231 | else | 265 | 231 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 231 | { | 270 | 231 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 231 | } | 273 | 231 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 479 | for (Index i = 0; i < n; i++) | 278 | 248 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 231 | m_count += n; | 281 | 231 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 12 | { | 237 | 12 | if (m_capacity < m_count + n) | 238 | 4 | { | 239 | 4 | Index newBufferCount = kInitialCount; | 240 | 4 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 4 | T* newBuffer = _allocate(newBufferCount); | 244 | 4 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 4 | m_buffer = newBuffer; | 262 | 4 | m_capacity = newBufferCount; | 263 | 4 | } | 264 | 8 | else | 265 | 8 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 8 | { | 270 | 8 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 8 | } | 273 | 8 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 24 | for (Index i = 0; i < n; i++) | 278 | 12 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 12 | m_count += n; | 281 | 12 | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 214 | { | 237 | 214 | if (m_capacity < m_count + n) | 238 | 214 | { | 239 | 214 | Index newBufferCount = kInitialCount; | 240 | 214 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 214 | T* newBuffer = _allocate(newBufferCount); | 244 | 214 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 214 | m_buffer = newBuffer; | 262 | 214 | m_capacity = newBufferCount; | 263 | 214 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 536 | for (Index i = 0; i < n; i++) | 278 | 322 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 214 | m_count += n; | 281 | 214 | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 3.58k | { | 237 | 3.58k | if (m_capacity < m_count + n) | 238 | 3.57k | { | 239 | 3.57k | Index newBufferCount = kInitialCount; | 240 | 3.57k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 3.57k | T* newBuffer = _allocate(newBufferCount); | 244 | 3.57k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 3.57k | m_buffer = newBuffer; | 262 | 3.57k | m_capacity = newBufferCount; | 263 | 3.57k | } | 264 | 1 | else | 265 | 1 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 1 | { | 270 | 1 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 1 | } | 273 | 1 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 7.15k | for (Index i = 0; i < n; i++) | 278 | 3.57k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 3.58k | m_count += n; | 281 | 3.58k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 19.1k | { | 237 | 19.1k | if (m_capacity < m_count + n) | 238 | 1.38k | { | 239 | 1.38k | Index newBufferCount = kInitialCount; | 240 | 1.38k | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 1.38k | T* newBuffer = _allocate(newBufferCount); | 244 | 1.38k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 1.38k | m_buffer = newBuffer; | 262 | 1.38k | m_capacity = newBufferCount; | 263 | 1.38k | } | 264 | 17.7k | else | 265 | 17.7k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 17.7k | { | 270 | 17.7k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 17.7k | } | 273 | 17.7k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 21.1k | for (Index i = 0; i < n; i++) | 278 | 1.96k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 19.1k | m_count += n; | 281 | 19.1k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 129 | { | 237 | 129 | if (m_capacity < m_count + n) | 238 | 129 | { | 239 | 129 | Index newBufferCount = kInitialCount; | 240 | 129 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 129 | T* newBuffer = _allocate(newBufferCount); | 244 | 129 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 129 | m_buffer = newBuffer; | 262 | 129 | m_capacity = newBufferCount; | 263 | 129 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 617 | for (Index i = 0; i < n; i++) | 278 | 488 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 129 | m_count += n; | 281 | 129 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 54 | { | 237 | 54 | if (m_capacity < m_count + n) | 238 | 48 | { | 239 | 48 | Index newBufferCount = kInitialCount; | 240 | 48 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 48 | T* newBuffer = _allocate(newBufferCount); | 244 | 48 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 48 | m_buffer = newBuffer; | 262 | 48 | m_capacity = newBufferCount; | 263 | 48 | } | 264 | 6 | else | 265 | 6 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 6 | { | 270 | 6 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 6 | } | 273 | 6 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 102 | for (Index i = 0; i < n; i++) | 278 | 48 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 54 | m_count += n; | 281 | 54 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 19 | { | 237 | 19 | if (m_capacity < m_count + n) | 238 | 19 | { | 239 | 19 | Index newBufferCount = kInitialCount; | 240 | 71 | while (newBufferCount < m_count + n) | 241 | 52 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 19 | T* newBuffer = _allocate(newBufferCount); | 244 | 19 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 19 | m_buffer = newBuffer; | 262 | 19 | m_capacity = newBufferCount; | 263 | 19 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 10.4k | for (Index i = 0; i < n; i++) | 278 | 10.4k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 19 | m_count += n; | 281 | 19 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 19 | { | 237 | 19 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 19 | else | 265 | 19 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 19 | { | 270 | 19 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 19 | } | 273 | 19 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 19 | for (Index i = 0; i < n; i++) | 278 | 0 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 19 | m_count += n; | 281 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 48 | { | 237 | 48 | if (m_capacity < m_count + n) | 238 | 44 | { | 239 | 44 | Index newBufferCount = kInitialCount; | 240 | 44 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 44 | T* newBuffer = _allocate(newBufferCount); | 244 | 44 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 44 | m_buffer = newBuffer; | 262 | 44 | m_capacity = newBufferCount; | 263 | 44 | } | 264 | 4 | else | 265 | 4 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 4 | { | 270 | 4 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 4 | } | 273 | 4 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 108 | for (Index i = 0; i < n; i++) | 278 | 60 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 48 | m_count += n; | 281 | 48 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 48 | { | 237 | 48 | if (m_capacity < m_count + n) | 238 | 48 | { | 239 | 48 | Index newBufferCount = kInitialCount; | 240 | 48 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 48 | T* newBuffer = _allocate(newBufferCount); | 244 | 48 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 48 | m_buffer = newBuffer; | 262 | 48 | m_capacity = newBufferCount; | 263 | 48 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 96 | for (Index i = 0; i < n; i++) | 278 | 48 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 48 | m_count += n; | 281 | 48 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 48 | { | 237 | 48 | if (m_capacity < m_count + n) | 238 | 48 | { | 239 | 48 | Index newBufferCount = kInitialCount; | 240 | 48 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 48 | T* newBuffer = _allocate(newBufferCount); | 244 | 48 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 48 | m_buffer = newBuffer; | 262 | 48 | m_capacity = newBufferCount; | 263 | 48 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 96 | for (Index i = 0; i < n; i++) | 278 | 48 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 48 | m_count += n; | 281 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 7 | { | 237 | 7 | if (m_capacity < m_count + n) | 238 | 7 | { | 239 | 7 | Index newBufferCount = kInitialCount; | 240 | 8 | while (newBufferCount < m_count + n) | 241 | 1 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 7 | T* newBuffer = _allocate(newBufferCount); | 244 | 7 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 7 | m_buffer = newBuffer; | 262 | 7 | m_capacity = newBufferCount; | 263 | 7 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 31 | for (Index i = 0; i < n; i++) | 278 | 24 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 7 | m_count += n; | 281 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE11insertRangeElPKS2_l Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 215 | { | 237 | 215 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 215 | else | 265 | 215 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 215 | { | 270 | 215 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 215 | } | 273 | 215 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 215 | for (Index i = 0; i < n; i++) | 278 | 0 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 215 | m_count += n; | 281 | 215 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 15 | { | 237 | 15 | if (m_capacity < m_count + n) | 238 | 15 | { | 239 | 15 | Index newBufferCount = kInitialCount; | 240 | 15 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 15 | T* newBuffer = _allocate(newBufferCount); | 244 | 15 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 15 | m_buffer = newBuffer; | 262 | 15 | m_capacity = newBufferCount; | 263 | 15 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 36 | for (Index i = 0; i < n; i++) | 278 | 21 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 15 | m_count += n; | 281 | 15 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 10 | { | 237 | 10 | if (m_capacity < m_count + n) | 238 | 10 | { | 239 | 10 | Index newBufferCount = kInitialCount; | 240 | 10 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 10 | T* newBuffer = _allocate(newBufferCount); | 244 | 10 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 10 | m_buffer = newBuffer; | 262 | 10 | m_capacity = newBufferCount; | 263 | 10 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 32 | for (Index i = 0; i < n; i++) | 278 | 22 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 10 | m_count += n; | 281 | 10 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE11insertRangeElPKS1_l Unexecuted instantiation: _ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 242 | { | 237 | 242 | if (m_capacity < m_count + n) | 238 | 238 | { | 239 | 238 | Index newBufferCount = kInitialCount; | 240 | 238 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 238 | T* newBuffer = _allocate(newBufferCount); | 244 | 238 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 238 | m_buffer = newBuffer; | 262 | 238 | m_capacity = newBufferCount; | 263 | 238 | } | 264 | 4 | else | 265 | 4 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 4 | { | 270 | 4 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 4 | } | 273 | 4 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 480 | for (Index i = 0; i < n; i++) | 278 | 238 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 242 | m_count += n; | 281 | 242 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 661 | { | 237 | 661 | if (m_capacity < m_count + n) | 238 | 661 | { | 239 | 661 | Index newBufferCount = kInitialCount; | 240 | 661 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 661 | T* newBuffer = _allocate(newBufferCount); | 244 | 661 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 661 | m_buffer = newBuffer; | 262 | 661 | m_capacity = newBufferCount; | 263 | 661 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.98k | for (Index i = 0; i < n; i++) | 278 | 1.32k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 661 | m_count += n; | 281 | 661 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE11insertRangeElPKS3_l _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 208 | { | 237 | 208 | if (m_capacity < m_count + n) | 238 | 0 | { | 239 | 0 | Index newBufferCount = kInitialCount; | 240 | 0 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | |
| 243 | 0 | T* newBuffer = _allocate(newBufferCount); | 244 | 0 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 0 | m_buffer = newBuffer; | 262 | 0 | m_capacity = newBufferCount; | 263 | 0 | } | 264 | 208 | else | 265 | 208 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 208 | { | 270 | 208 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 208 | } | 273 | 208 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 208 | for (Index i = 0; i < n; i++) | 278 | 0 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 208 | m_count += n; | 281 | 208 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 5.19k | { | 237 | 5.19k | if (m_capacity < m_count + n) | 238 | 5.19k | { | 239 | 5.19k | Index newBufferCount = kInitialCount; | 240 | 5.81k | while (newBufferCount < m_count + n) | 241 | 612 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 5.19k | T* newBuffer = _allocate(newBufferCount); | 244 | 5.19k | if (m_capacity) | 245 | 69 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 69 | { | 254 | 883k | for (Index i = 0; i < idx; i++) | 255 | 883k | newBuffer[i] = m_buffer[i]; | 256 | 69 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 69 | } | 259 | 69 | _deallocateBuffer(); | 260 | 69 | } | 261 | 5.19k | m_buffer = newBuffer; | 262 | 5.19k | m_capacity = newBufferCount; | 263 | 5.19k | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 22.6k | for (Index i = 0; i < n; i++) | 278 | 17.4k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 5.19k | m_count += n; | 281 | 5.19k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 69 | { | 237 | 69 | if (m_capacity < m_count + n) | 238 | 69 | { | 239 | 69 | Index newBufferCount = kInitialCount; | 240 | 681 | while (newBufferCount < m_count + n) | 241 | 612 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 69 | T* newBuffer = _allocate(newBufferCount); | 244 | 69 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 69 | m_buffer = newBuffer; | 262 | 69 | m_capacity = newBufferCount; | 263 | 69 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 883k | for (Index i = 0; i < n; i++) | 278 | 883k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 69 | m_count += n; | 281 | 69 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l _ZN5Slang4ListIcNS_17StandardAllocatorEE11insertRangeElPKcl Line | Count | Source | 236 | 7.51k | { | 237 | 7.51k | if (m_capacity < m_count + n) | 238 | 7.49k | { | 239 | 7.49k | Index newBufferCount = kInitialCount; | 240 | 31.9k | while (newBufferCount < m_count + n) | 241 | 24.4k | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 7.49k | T* newBuffer = _allocate(newBufferCount); | 244 | 7.49k | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 7.49k | m_buffer = newBuffer; | 262 | 7.49k | m_capacity = newBufferCount; | 263 | 7.49k | } | 264 | 24 | else | 265 | 24 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 24 | { | 270 | 24 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 24 | } | 273 | 24 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 20.8M | for (Index i = 0; i < n; i++) | 278 | 20.8M | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 7.51k | m_count += n; | 281 | 7.51k | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 27 | { | 237 | 27 | if (m_capacity < m_count + n) | 238 | 27 | { | 239 | 27 | Index newBufferCount = kInitialCount; | 240 | 54 | while (newBufferCount < m_count + n) | 241 | 27 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 27 | T* newBuffer = _allocate(newBufferCount); | 244 | 27 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 27 | m_buffer = newBuffer; | 262 | 27 | m_capacity = newBufferCount; | 263 | 27 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 540 | for (Index i = 0; i < n; i++) | 278 | 513 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 27 | m_count += n; | 281 | 27 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE11insertRangeElPKS2_l Unexecuted instantiation: _ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE11insertRangeElPKS1_l _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 3 | { | 237 | 3 | if (m_capacity < m_count + n) | 238 | 3 | { | 239 | 3 | Index newBufferCount = kInitialCount; | 240 | 3 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 3 | T* newBuffer = _allocate(newBufferCount); | 244 | 3 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 3 | m_buffer = newBuffer; | 262 | 3 | m_capacity = newBufferCount; | 263 | 3 | } | 264 | 0 | else | 265 | 0 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 0 | { | 270 | 0 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 0 | } | 273 | 0 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 14 | for (Index i = 0; i < n; i++) | 278 | 11 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 3 | m_count += n; | 281 | 3 | } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 417 | { | 237 | 417 | if (m_capacity < m_count + n) | 238 | 40 | { | 239 | 40 | Index newBufferCount = kInitialCount; | 240 | 40 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 40 | T* newBuffer = _allocate(newBufferCount); | 244 | 40 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 40 | m_buffer = newBuffer; | 262 | 40 | m_capacity = newBufferCount; | 263 | 40 | } | 264 | 377 | else | 265 | 377 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 377 | { | 270 | 377 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 377 | } | 273 | 377 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 468 | for (Index i = 0; i < n; i++) | 278 | 51 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 417 | m_count += n; | 281 | 417 | } |
_ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE11insertRangeElPKS2_l Line | Count | Source | 236 | 344 | { | 237 | 344 | if (m_capacity < m_count + n) | 238 | 336 | { | 239 | 336 | Index newBufferCount = kInitialCount; | 240 | 336 | while (newBufferCount < m_count + n) | 241 | 0 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 336 | T* newBuffer = _allocate(newBufferCount); | 244 | 336 | if (m_capacity) | 245 | 0 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 0 | { | 254 | 0 | for (Index i = 0; i < idx; i++) | 255 | 0 | newBuffer[i] = m_buffer[i]; | 256 | 0 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 0 | } | 259 | 0 | _deallocateBuffer(); | 260 | 0 | } | 261 | 336 | m_buffer = newBuffer; | 262 | 336 | m_capacity = newBufferCount; | 263 | 336 | } | 264 | 8 | else | 265 | 8 | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 8 | { | 270 | 8 | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 8 | } | 273 | 8 | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 1.16k | for (Index i = 0; i < n; i++) | 278 | 820 | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 344 | m_count += n; | 281 | 344 | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 6.54k | { | 237 | 6.54k | if (m_capacity < m_count + n) | 238 | 113 | { | 239 | 113 | Index newBufferCount = kInitialCount; | 240 | 169 | while (newBufferCount < m_count + n) | 241 | 56 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 113 | T* newBuffer = _allocate(newBufferCount); | 244 | 113 | if (m_capacity) | 245 | 35 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 35 | { | 254 | 485 | for (Index i = 0; i < idx; i++) | 255 | 450 | newBuffer[i] = m_buffer[i]; | 256 | 35 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 35 | } | 259 | 35 | _deallocateBuffer(); | 260 | 35 | } | 261 | 113 | m_buffer = newBuffer; | 262 | 113 | m_capacity = newBufferCount; | 263 | 113 | } | 264 | 6.43k | else | 265 | 6.43k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 6.43k | { | 270 | 6.43k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 6.43k | } | 273 | 6.43k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 57.9k | for (Index i = 0; i < n; i++) | 278 | 51.4k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 6.54k | m_count += n; | 281 | 6.54k | } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE11insertRangeElPKS1_l Line | Count | Source | 236 | 34.8k | { | 237 | 34.8k | if (m_capacity < m_count + n) | 238 | 283 | { | 239 | 283 | Index newBufferCount = kInitialCount; | 240 | 789 | while (newBufferCount < m_count + n) | 241 | 506 | newBufferCount = newBufferCount << 1; | 242 | | | 243 | 283 | T* newBuffer = _allocate(newBufferCount); | 244 | 283 | if (m_capacity) | 245 | 200 | { | 246 | | /*if (std::has_trivial_copy_assign<T>::value && | 247 | | std::has_trivial_destructor<T>::value) | 248 | | { | 249 | | memcpy(newBuffer, buffer, sizeof(T) * id); | 250 | | memcpy(newBuffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 251 | | } | 252 | | else*/ | 253 | 200 | { | 254 | 26.1k | for (Index i = 0; i < idx; i++) | 255 | 25.9k | newBuffer[i] = m_buffer[i]; | 256 | 200 | for (Index i = idx; i < m_count; i++) | 257 | 0 | newBuffer[i + n] = T(static_cast<T&&>(m_buffer[i])); | 258 | 200 | } | 259 | 200 | _deallocateBuffer(); | 260 | 200 | } | 261 | 283 | m_buffer = newBuffer; | 262 | 283 | m_capacity = newBufferCount; | 263 | 283 | } | 264 | 34.5k | else | 265 | 34.5k | { | 266 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 267 | | memmove(buffer + id + n, buffer + id, sizeof(T) * (_count - id)); | 268 | | else*/ | 269 | 34.5k | { | 270 | 34.5k | for (Index i = m_count; i > idx; i--) | 271 | 0 | m_buffer[i + n - 1] = static_cast<T&&>(m_buffer[i - 1]); | 272 | 34.5k | } | 273 | 34.5k | } | 274 | | /*if (std::has_trivial_copy_assign<T>::value && std::has_trivial_destructor<T>::value) | 275 | | memcpy(buffer + id, vals, sizeof(T) * n); | 276 | | else*/ | 277 | 140k | for (Index i = 0; i < n; i++) | 278 | 105k | m_buffer[idx + i] = vals[i]; | 279 | | | 280 | 34.8k | m_count += n; | 281 | 34.8k | } |
|
282 | | |
283 | | void insertRange(Index id, const List<T>& list) |
284 | 2 | { |
285 | 2 | insertRange(id, list.m_buffer, list.m_count); |
286 | 2 | } |
287 | | |
288 | 4 | void addRange(ArrayView<T> list) { insertRange(m_count, list.getBuffer(), list.getCount()); } |
289 | | |
290 | 376k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); }_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE8addRangeEPKS2_l Line | Count | Source | 290 | 69 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE8addRangeEPKS3_l Line | Count | Source | 290 | 74 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE8addRangeEPKjl Line | Count | Source | 290 | 22.9k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE8addRangeEPKhl Line | Count | Source | 290 | 297k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE8addRangeEPKS2_l _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8addRangeEPKS2_l Line | Count | Source | 290 | 781 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE8addRangeEPKS1_l _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE8addRangeEPKS2_l Line | Count | Source | 290 | 5.19k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE8addRangeEPKS2_l Line | Count | Source | 290 | 69 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE8addRangeEPKcl Line | Count | Source | 290 | 7.51k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE8addRangeEPKS1_l Line | Count | Source | 290 | 27 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
Unexecuted instantiation: _ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE8addRangeEPKS1_l Unexecuted instantiation: _ZN5Slang4ListImNS_17StandardAllocatorEE8addRangeEPKml _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE8addRangeEPKS1_l Line | Count | Source | 290 | 5 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE8addRangeEPKS2_l Line | Count | Source | 290 | 344 | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE8addRangeEPKS1_l Line | Count | Source | 290 | 6.54k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE8addRangeEPKS1_l Line | Count | Source | 290 | 34.8k | void addRange(const T* vals, Index n) { insertRange(m_count, vals, n); } |
|
291 | | |
292 | 13.8M | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); }_ZN5Slang4ListImNS_17StandardAllocatorEE8addRangeERKS2_ Line | Count | Source | 292 | 13.0M | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE8addRangeERKS2_ Line | Count | Source | 292 | 191 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 42.2k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 20.6k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 3.13k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 6.18k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 5.83k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 305k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE8addRangeERKS2_ Line | Count | Source | 292 | 247 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE8addRangeERKS3_ Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 8.34k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 33.3k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 310k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE8addRangeERKS5_ Line | Count | Source | 292 | 2.98k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 9 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 30 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE8addRangeERKS3_ _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 3 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE8addRangeERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE8addRangeERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIjNS_17StandardAllocatorEE8addRangeERKS2_ Line | Count | Source | 292 | 4.88k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 4 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 4 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 626 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 334 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE8addRangeERKS5_ Line | Count | Source | 292 | 421 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 91 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 22 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 1.31k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 1.22k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 27.4k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 231 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 12 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 214 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 3.58k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 19.1k | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 129 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 54 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 19 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 19 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 48 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 48 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 48 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 7 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE8addRangeERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 215 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 15 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 10 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE8addRangeERKS3_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 242 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 661 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE8addRangeERKS5_ _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 208 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE8addRangeERKS4_ Line | Count | Source | 292 | 14 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE8addRangeERKS4_ Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE8addRangeERKS4_ _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE8addRangeERKS3_ Line | Count | Source | 292 | 3 | void addRange(const List<T>& list) { insertRange(m_count, list.m_buffer, list.m_count); } |
|
293 | | |
294 | | void removeRange(Index idx, Index count) |
295 | 736 | { |
296 | 736 | SLANG_ASSERT(idx >= 0 && idx <= m_count); |
297 | | |
298 | 736 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; |
299 | 994 | for (Index i = idx + actualDeleteCount; i < m_count; i++) |
300 | 258 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); |
301 | 736 | m_count -= actualDeleteCount; |
302 | 736 | } _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 448 | { | 296 | 448 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 448 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 492 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 44 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 448 | m_count -= actualDeleteCount; | 302 | 448 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE11removeRangeEll _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 59 | { | 296 | 59 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 59 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 59 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 0 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 59 | m_count -= actualDeleteCount; | 302 | 59 | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 5 | { | 296 | 5 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 5 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 16 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 11 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 5 | m_count -= actualDeleteCount; | 302 | 5 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE11removeRangeEll Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE11removeRangeEll _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 112 | { | 296 | 112 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 112 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 140 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 28 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 112 | m_count -= actualDeleteCount; | 302 | 112 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE11removeRangeEll _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 109 | { | 296 | 109 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 109 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 284 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 175 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 109 | m_count -= actualDeleteCount; | 302 | 109 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE11removeRangeEll Line | Count | Source | 295 | 3 | { | 296 | 3 | SLANG_ASSERT(idx >= 0 && idx <= m_count); | 297 | | | 298 | 3 | const Index actualDeleteCount = ((idx + count) >= m_count) ? (m_count - idx) : count; | 299 | 3 | for (Index i = idx + actualDeleteCount; i < m_count; i++) | 300 | 0 | m_buffer[i - actualDeleteCount] = static_cast<T&&>(m_buffer[i]); | 301 | 3 | m_count -= actualDeleteCount; | 302 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE11removeRangeEll |
303 | | |
304 | 244 | void removeAt(Index id) { removeRange(id, 1); }Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8removeAtEl _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE8removeAtEl Line | Count | Source | 304 | 59 | void removeAt(Index id) { removeRange(id, 1); } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE8removeAtEl Line | Count | Source | 304 | 5 | void removeAt(Index id) { removeRange(id, 1); } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE8removeAtEl Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8removeAtEl _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE8removeAtEl Line | Count | Source | 304 | 112 | void removeAt(Index id) { removeRange(id, 1); } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE8removeAtEl _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE8removeAtEl Line | Count | Source | 304 | 65 | void removeAt(Index id) { removeRange(id, 1); } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE8removeAtEl Line | Count | Source | 304 | 3 | void removeAt(Index id) { removeRange(id, 1); } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE8removeAtEl |
305 | | |
306 | | void remove(const T& val) |
307 | 59 | { |
308 | 59 | Index idx = indexOf(val); |
309 | 59 | if (idx != -1) |
310 | 59 | removeAt(idx); |
311 | 59 | } Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE6removeERKS2_ _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE6removeERKS2_ Line | Count | Source | 307 | 59 | { | 308 | 59 | Index idx = indexOf(val); | 309 | 59 | if (idx != -1) | 310 | 59 | removeAt(idx); | 311 | 59 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE6removeERKS2_ |
312 | | |
313 | | void reverse() |
314 | 32.9k | { |
315 | 41.8k | for (Index i = 0; i < (m_count >> 1); i++) |
316 | 8.90k | { |
317 | 8.90k | swapElements(m_buffer, i, m_count - i - 1); |
318 | 8.90k | } |
319 | 32.9k | } _ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE7reverseEv Line | Count | Source | 314 | 7.49k | { | 315 | 7.70k | for (Index i = 0; i < (m_count >> 1); i++) | 316 | 205 | { | 317 | 205 | swapElements(m_buffer, i, m_count - i - 1); | 318 | 205 | } | 319 | 7.49k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE7reverseEv Line | Count | Source | 314 | 323 | { | 315 | 573 | for (Index i = 0; i < (m_count >> 1); i++) | 316 | 250 | { | 317 | 250 | swapElements(m_buffer, i, m_count - i - 1); | 318 | 250 | } | 319 | 323 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE7reverseEv Line | Count | Source | 314 | 16.6k | { | 315 | 20.1k | for (Index i = 0; i < (m_count >> 1); i++) | 316 | 3.43k | { | 317 | 3.43k | swapElements(m_buffer, i, m_count - i - 1); | 318 | 3.43k | } | 319 | 16.6k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE7reverseEv Line | Count | Source | 314 | 8.48k | { | 315 | 13.4k | for (Index i = 0; i < (m_count >> 1); i++) | 316 | 5.00k | { | 317 | 5.00k | swapElements(m_buffer, i, m_count - i - 1); | 318 | 5.00k | } | 319 | 8.48k | } |
|
320 | | |
321 | | void fastRemove(const T& val) |
322 | | { |
323 | | Index idx = indexOf(val); |
324 | | if (idx >= 0) |
325 | | { |
326 | | fastRemoveAt(idx); |
327 | | } |
328 | | } |
329 | | |
330 | | void fastRemoveAt(Index idx) |
331 | 1.57M | { |
332 | 1.57M | SLANG_ASSERT(idx >= 0 && idx < m_count); |
333 | | // We do not test for idx == m_count - 1 (ie the move is to current index). With the |
334 | | // assumption that any reasonable move implementation tests and ignores this case |
335 | 1.57M | if (idx != m_count - 1) |
336 | 1.33M | { |
337 | 1.33M | m_buffer[idx] = _Move(m_buffer[m_count - 1]); |
338 | 1.33M | } |
339 | 1.57M | m_count--; |
340 | 1.57M | } _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE12fastRemoveAtEl Line | Count | Source | 331 | 740k | { | 332 | 740k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 333 | | // We do not test for idx == m_count - 1 (ie the move is to current index). With the | 334 | | // assumption that any reasonable move implementation tests and ignores this case | 335 | 740k | if (idx != m_count - 1) | 336 | 700k | { | 337 | 700k | m_buffer[idx] = _Move(m_buffer[m_count - 1]); | 338 | 700k | } | 339 | 740k | m_count--; | 340 | 740k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE12fastRemoveAtEl _ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE12fastRemoveAtEl Line | Count | Source | 331 | 122k | { | 332 | 122k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 333 | | // We do not test for idx == m_count - 1 (ie the move is to current index). With the | 334 | | // assumption that any reasonable move implementation tests and ignores this case | 335 | 122k | if (idx != m_count - 1) | 336 | 104k | { | 337 | 104k | m_buffer[idx] = _Move(m_buffer[m_count - 1]); | 338 | 104k | } | 339 | 122k | m_count--; | 340 | 122k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE12fastRemoveAtEl _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE12fastRemoveAtEl Line | Count | Source | 331 | 712k | { | 332 | 712k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 333 | | // We do not test for idx == m_count - 1 (ie the move is to current index). With the | 334 | | // assumption that any reasonable move implementation tests and ignores this case | 335 | 712k | if (idx != m_count - 1) | 336 | 529k | { | 337 | 529k | m_buffer[idx] = _Move(m_buffer[m_count - 1]); | 338 | 529k | } | 339 | 712k | m_count--; | 340 | 712k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE12fastRemoveAtEl |
341 | | |
342 | 3.20M | void clear() { m_count = 0; }_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 69 | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 164 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 4.70k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 265k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 17 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 24 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1.87k | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 50.9k | void clear() { m_count = 0; } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1.17k | void clear() { m_count = 0; } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 96 | void clear() { m_count = 0; } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1.07k | void clear() { m_count = 0; } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 6.74k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1.17k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 6 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 137 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 4.00k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 48.1k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.07k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 239 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 178 | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListImNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 2.44M | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 178k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 43.7k | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 50 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.34k | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1.12k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIcNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.03k | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 49 | void clear() { m_count = 0; } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.15k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 49 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 48 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 48 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 48 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 69 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E5clearEv Line | Count | Source | 342 | 172 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 119k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.20k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 23 | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE5clearEv Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 668 | void clear() { m_count = 0; } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE5clearEv _ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 344 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 50 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.00k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 3.00k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 1 | void clear() { m_count = 0; } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 4.70k | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 15 | void clear() { m_count = 0; } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE5clearEv Line | Count | Source | 342 | 5 | void clear() { m_count = 0; } |
|
343 | | |
344 | | void clearAndDeallocate() |
345 | 13.7M | { |
346 | 13.7M | _deallocateBuffer(); |
347 | 13.7M | m_count = m_capacity = 0; |
348 | 13.7M | } _ZN5Slang4ListImNS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 13.0M | { | 346 | 13.0M | _deallocateBuffer(); | 347 | 13.0M | m_count = m_capacity = 0; | 348 | 13.0M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 191 | { | 346 | 191 | _deallocateBuffer(); | 347 | 191 | m_count = m_capacity = 0; | 348 | 191 | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 42.0k | { | 346 | 42.0k | _deallocateBuffer(); | 347 | 42.0k | m_count = m_capacity = 0; | 348 | 42.0k | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 25 | { | 346 | 25 | _deallocateBuffer(); | 347 | 25 | m_count = m_capacity = 0; | 348 | 25 | } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 25 | { | 346 | 25 | _deallocateBuffer(); | 347 | 25 | m_count = m_capacity = 0; | 348 | 25 | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 20.6k | { | 346 | 20.6k | _deallocateBuffer(); | 347 | 20.6k | m_count = m_capacity = 0; | 348 | 20.6k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 3.13k | { | 346 | 3.13k | _deallocateBuffer(); | 347 | 3.13k | m_count = m_capacity = 0; | 348 | 3.13k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 4.82k | { | 346 | 4.82k | _deallocateBuffer(); | 347 | 4.82k | m_count = m_capacity = 0; | 348 | 4.82k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 5.96k | { | 346 | 5.96k | _deallocateBuffer(); | 347 | 5.96k | m_count = m_capacity = 0; | 348 | 5.96k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 304k | { | 346 | 304k | _deallocateBuffer(); | 347 | 304k | m_count = m_capacity = 0; | 348 | 304k | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 247 | { | 346 | 247 | _deallocateBuffer(); | 347 | 247 | m_count = m_capacity = 0; | 348 | 247 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 8.34k | { | 346 | 8.34k | _deallocateBuffer(); | 347 | 8.34k | m_count = m_capacity = 0; | 348 | 8.34k | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 297k | { | 346 | 297k | _deallocateBuffer(); | 347 | 297k | m_count = m_capacity = 0; | 348 | 297k | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 33.2k | { | 346 | 33.2k | _deallocateBuffer(); | 347 | 33.2k | m_count = m_capacity = 0; | 348 | 33.2k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 9 | { | 346 | 9 | _deallocateBuffer(); | 347 | 9 | m_count = m_capacity = 0; | 348 | 9 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 30 | { | 346 | 30 | _deallocateBuffer(); | 347 | 30 | m_count = m_capacity = 0; | 348 | 30 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 3 | { | 346 | 3 | _deallocateBuffer(); | 347 | 3 | m_count = m_capacity = 0; | 348 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListIjNS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 2.39k | { | 346 | 2.39k | _deallocateBuffer(); | 347 | 2.39k | m_count = m_capacity = 0; | 348 | 2.39k | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 4 | { | 346 | 4 | _deallocateBuffer(); | 347 | 4 | m_count = m_capacity = 0; | 348 | 4 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 4 | { | 346 | 4 | _deallocateBuffer(); | 347 | 4 | m_count = m_capacity = 0; | 348 | 4 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 626 | { | 346 | 626 | _deallocateBuffer(); | 347 | 626 | m_count = m_capacity = 0; | 348 | 626 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 421 | { | 346 | 421 | _deallocateBuffer(); | 347 | 421 | m_count = m_capacity = 0; | 348 | 421 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 91 | { | 346 | 91 | _deallocateBuffer(); | 347 | 91 | m_count = m_capacity = 0; | 348 | 91 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 22 | { | 346 | 22 | _deallocateBuffer(); | 347 | 22 | m_count = m_capacity = 0; | 348 | 22 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 1.31k | { | 346 | 1.31k | _deallocateBuffer(); | 347 | 1.31k | m_count = m_capacity = 0; | 348 | 1.31k | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 1.22k | { | 346 | 1.22k | _deallocateBuffer(); | 347 | 1.22k | m_count = m_capacity = 0; | 348 | 1.22k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 148 | { | 346 | 148 | _deallocateBuffer(); | 347 | 148 | m_count = m_capacity = 0; | 348 | 148 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 214 | { | 346 | 214 | _deallocateBuffer(); | 347 | 214 | m_count = m_capacity = 0; | 348 | 214 | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 3.58k | { | 346 | 3.58k | _deallocateBuffer(); | 347 | 3.58k | m_count = m_capacity = 0; | 348 | 3.58k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 19.1k | { | 346 | 19.1k | _deallocateBuffer(); | 347 | 19.1k | m_count = m_capacity = 0; | 348 | 19.1k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 129 | { | 346 | 129 | _deallocateBuffer(); | 347 | 129 | m_count = m_capacity = 0; | 348 | 129 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 54 | { | 346 | 54 | _deallocateBuffer(); | 347 | 54 | m_count = m_capacity = 0; | 348 | 54 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 19 | { | 346 | 19 | _deallocateBuffer(); | 347 | 19 | m_count = m_capacity = 0; | 348 | 19 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 19 | { | 346 | 19 | _deallocateBuffer(); | 347 | 19 | m_count = m_capacity = 0; | 348 | 19 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 7 | { | 346 | 7 | _deallocateBuffer(); | 347 | 7 | m_count = m_capacity = 0; | 348 | 7 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 48 | { | 346 | 48 | _deallocateBuffer(); | 347 | 48 | m_count = m_capacity = 0; | 348 | 48 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 48 | { | 346 | 48 | _deallocateBuffer(); | 347 | 48 | m_count = m_capacity = 0; | 348 | 48 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 48 | { | 346 | 48 | _deallocateBuffer(); | 347 | 48 | m_count = m_capacity = 0; | 348 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 7 | { | 346 | 7 | _deallocateBuffer(); | 347 | 7 | m_count = m_capacity = 0; | 348 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 215 | { | 346 | 215 | _deallocateBuffer(); | 347 | 215 | m_count = m_capacity = 0; | 348 | 215 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 15 | { | 346 | 15 | _deallocateBuffer(); | 347 | 15 | m_count = m_capacity = 0; | 348 | 15 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 10 | { | 346 | 10 | _deallocateBuffer(); | 347 | 10 | m_count = m_capacity = 0; | 348 | 10 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 242 | { | 346 | 242 | _deallocateBuffer(); | 347 | 242 | m_count = m_capacity = 0; | 348 | 242 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 661 | { | 346 | 661 | _deallocateBuffer(); | 347 | 661 | m_count = m_capacity = 0; | 348 | 661 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 208 | { | 346 | 208 | _deallocateBuffer(); | 347 | 208 | m_count = m_capacity = 0; | 348 | 208 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 14 | { | 346 | 14 | _deallocateBuffer(); | 347 | 14 | m_count = m_capacity = 0; | 348 | 14 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE18clearAndDeallocateEv Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE18clearAndDeallocateEv _ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 3 | { | 346 | 3 | _deallocateBuffer(); | 347 | 3 | m_count = m_capacity = 0; | 348 | 3 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE18clearAndDeallocateEv Line | Count | Source | 345 | 21 | { | 346 | 21 | _deallocateBuffer(); | 347 | 21 | m_count = m_capacity = 0; | 348 | 21 | } |
|
349 | | |
350 | | void reserve(Index size) |
351 | 17.1M | { |
352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect |
353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be |
354 | | // negative). |
355 | 17.1M | if (UIndex(size) > UIndex(m_capacity)) |
356 | 12.7M | { |
357 | 12.7M | T* newBuffer = _allocate(size); |
358 | 12.7M | if (m_capacity) |
359 | 317k | { |
360 | | /*if (std::has_trivial_copy_assign<T>::value && |
361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * |
362 | | sizeof(T)); else*/ |
363 | 317k | { |
364 | 900M | for (Index i = 0; i < m_count; i++) |
365 | 900M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); |
366 | | |
367 | | // Default-initialize the remaining elements |
368 | 103M | for (Index i = m_count; i < size; i++) |
369 | 102M | { |
370 | 102M | new (newBuffer + i) T(); |
371 | 102M | } |
372 | 317k | } |
373 | 317k | _deallocateBuffer(); |
374 | 317k | } |
375 | 12.7M | m_buffer = newBuffer; |
376 | 12.7M | m_capacity = size; |
377 | 12.7M | } |
378 | 17.1M | } _ZN5Slang4ListImNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6.38M | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6.38M | if (UIndex(size) > UIndex(m_capacity)) | 356 | 5.07M | { | 357 | 5.07M | T* newBuffer = _allocate(size); | 358 | 5.07M | if (m_capacity) | 359 | 252 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 252 | { | 364 | 32.5k | for (Index i = 0; i < m_count; i++) | 365 | 32.2k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 32.5k | for (Index i = m_count; i < size; i++) | 369 | 32.2k | { | 370 | 32.2k | new (newBuffer + i) T(); | 371 | 32.2k | } | 372 | 252 | } | 373 | 252 | _deallocateBuffer(); | 374 | 252 | } | 375 | 5.07M | m_buffer = newBuffer; | 376 | 5.07M | m_capacity = size; | 377 | 5.07M | } | 378 | 6.38M | } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.14k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.14k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.14k | { | 357 | 1.14k | T* newBuffer = _allocate(size); | 358 | 1.14k | if (m_capacity) | 359 | 2 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 2 | { | 364 | 34 | for (Index i = 0; i < m_count; i++) | 365 | 32 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 34 | for (Index i = m_count; i < size; i++) | 369 | 32 | { | 370 | 32 | new (newBuffer + i) T(); | 371 | 32 | } | 372 | 2 | } | 373 | 2 | _deallocateBuffer(); | 374 | 2 | } | 375 | 1.14k | m_buffer = newBuffer; | 376 | 1.14k | m_capacity = size; | 377 | 1.14k | } | 378 | 1.14k | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.03M | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.03M | if (UIndex(size) > UIndex(m_capacity)) | 356 | 37.2k | { | 357 | 37.2k | T* newBuffer = _allocate(size); | 358 | 37.2k | if (m_capacity) | 359 | 33.0k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 33.0k | { | 364 | 838M | for (Index i = 0; i < m_count; i++) | 365 | 838M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 41.4M | for (Index i = m_count; i < size; i++) | 369 | 41.4M | { | 370 | 41.4M | new (newBuffer + i) T(); | 371 | 41.4M | } | 372 | 33.0k | } | 373 | 33.0k | _deallocateBuffer(); | 374 | 33.0k | } | 375 | 37.2k | m_buffer = newBuffer; | 376 | 37.2k | m_capacity = size; | 377 | 37.2k | } | 378 | 3.03M | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 15.9k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 15.9k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 15.9k | { | 357 | 15.9k | T* newBuffer = _allocate(size); | 358 | 15.9k | if (m_capacity) | 359 | 886 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 886 | { | 364 | 23.1k | for (Index i = 0; i < m_count; i++) | 365 | 22.2k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 23.1k | for (Index i = m_count; i < size; i++) | 369 | 22.2k | { | 370 | 22.2k | new (newBuffer + i) T(); | 371 | 22.2k | } | 372 | 886 | } | 373 | 886 | _deallocateBuffer(); | 374 | 886 | } | 375 | 15.9k | m_buffer = newBuffer; | 376 | 15.9k | m_capacity = size; | 377 | 15.9k | } | 378 | 15.9k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4.69k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4.69k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4.69k | { | 357 | 4.69k | T* newBuffer = _allocate(size); | 358 | 4.69k | if (m_capacity) | 359 | 1.74k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1.74k | { | 364 | 180k | for (Index i = 0; i < m_count; i++) | 365 | 178k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 180k | for (Index i = m_count; i < size; i++) | 369 | 178k | { | 370 | 178k | new (newBuffer + i) T(); | 371 | 178k | } | 372 | 1.74k | } | 373 | 1.74k | _deallocateBuffer(); | 374 | 1.74k | } | 375 | 4.69k | m_buffer = newBuffer; | 376 | 4.69k | m_capacity = size; | 377 | 4.69k | } | 378 | 4.69k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.34k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.34k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.34k | { | 357 | 2.34k | T* newBuffer = _allocate(size); | 358 | 2.34k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2.34k | m_buffer = newBuffer; | 376 | 2.34k | m_capacity = size; | 377 | 2.34k | } | 378 | 2.34k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 246 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 246 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 246 | { | 357 | 246 | T* newBuffer = _allocate(size); | 358 | 246 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 246 | m_buffer = newBuffer; | 376 | 246 | m_capacity = size; | 377 | 246 | } | 378 | 246 | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 71 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 71 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 71 | { | 357 | 71 | T* newBuffer = _allocate(size); | 358 | 71 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 71 | m_buffer = newBuffer; | 376 | 71 | m_capacity = size; | 377 | 71 | } | 378 | 71 | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 574k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 574k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 574k | { | 357 | 574k | T* newBuffer = _allocate(size); | 358 | 574k | if (m_capacity) | 359 | 1 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1 | { | 364 | 17 | for (Index i = 0; i < m_count; i++) | 365 | 16 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 17 | for (Index i = m_count; i < size; i++) | 369 | 16 | { | 370 | 16 | new (newBuffer + i) T(); | 371 | 16 | } | 372 | 1 | } | 373 | 1 | _deallocateBuffer(); | 374 | 1 | } | 375 | 574k | m_buffer = newBuffer; | 376 | 574k | m_capacity = size; | 377 | 574k | } | 378 | 574k | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_E7reserveEl Line | Count | Source | 351 | 949 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 949 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 949 | { | 357 | 949 | T* newBuffer = _allocate(size); | 358 | 949 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 949 | m_buffer = newBuffer; | 376 | 949 | m_capacity = size; | 377 | 949 | } | 378 | 949 | } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 949 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 949 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 949 | { | 357 | 949 | T* newBuffer = _allocate(size); | 358 | 949 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 949 | m_buffer = newBuffer; | 376 | 949 | m_capacity = size; | 377 | 949 | } | 378 | 949 | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 949 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 949 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 949 | { | 357 | 949 | T* newBuffer = _allocate(size); | 358 | 949 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 949 | m_buffer = newBuffer; | 376 | 949 | m_capacity = size; | 377 | 949 | } | 378 | 949 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.26M | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.26M | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.26M | { | 357 | 3.26M | T* newBuffer = _allocate(size); | 358 | 3.26M | if (m_capacity) | 359 | 134k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 134k | { | 364 | 10.4M | for (Index i = 0; i < m_count; i++) | 365 | 10.2M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 10.4M | for (Index i = m_count; i < size; i++) | 369 | 10.2M | { | 370 | 10.2M | new (newBuffer + i) T(); | 371 | 10.2M | } | 372 | 134k | } | 373 | 134k | _deallocateBuffer(); | 374 | 134k | } | 375 | 3.26M | m_buffer = newBuffer; | 376 | 3.26M | m_capacity = size; | 377 | 3.26M | } | 378 | 3.26M | } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.55k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.55k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.55k | { | 357 | 1.55k | T* newBuffer = _allocate(size); | 358 | 1.55k | if (m_capacity) | 359 | 1.18k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1.18k | { | 364 | 1.14M | for (Index i = 0; i < m_count; i++) | 365 | 1.13M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.14M | for (Index i = m_count; i < size; i++) | 369 | 1.13M | { | 370 | 1.13M | new (newBuffer + i) T(); | 371 | 1.13M | } | 372 | 1.18k | } | 373 | 1.18k | _deallocateBuffer(); | 374 | 1.18k | } | 375 | 1.55k | m_buffer = newBuffer; | 376 | 1.55k | m_capacity = size; | 377 | 1.55k | } | 378 | 1.55k | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.80k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.80k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.80k | { | 357 | 2.80k | T* newBuffer = _allocate(size); | 358 | 2.80k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2.80k | m_buffer = newBuffer; | 376 | 2.80k | m_capacity = size; | 377 | 2.80k | } | 378 | 2.80k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.95k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.95k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.95k | { | 357 | 1.95k | T* newBuffer = _allocate(size); | 358 | 1.95k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.95k | m_buffer = newBuffer; | 376 | 1.95k | m_capacity = size; | 377 | 1.95k | } | 378 | 1.95k | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.16k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.16k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.16k | { | 357 | 1.16k | T* newBuffer = _allocate(size); | 358 | 1.16k | if (m_capacity) | 359 | 14 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 14 | { | 364 | 302 | for (Index i = 0; i < m_count; i++) | 365 | 288 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 302 | for (Index i = m_count; i < size; i++) | 369 | 288 | { | 370 | 288 | new (newBuffer + i) T(); | 371 | 288 | } | 372 | 14 | } | 373 | 14 | _deallocateBuffer(); | 374 | 14 | } | 375 | 1.16k | m_buffer = newBuffer; | 376 | 1.16k | m_capacity = size; | 377 | 1.16k | } | 378 | 1.16k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 887k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 887k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 887k | { | 357 | 887k | T* newBuffer = _allocate(size); | 358 | 887k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 887k | m_buffer = newBuffer; | 376 | 887k | m_capacity = size; | 377 | 887k | } | 378 | 887k | } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 7.49k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 7.49k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 7.49k | { | 357 | 7.49k | T* newBuffer = _allocate(size); | 358 | 7.49k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 7.49k | m_buffer = newBuffer; | 376 | 7.49k | m_capacity = size; | 377 | 7.49k | } | 378 | 7.49k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 71.7k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 71.7k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 71.7k | { | 357 | 71.7k | T* newBuffer = _allocate(size); | 358 | 71.7k | if (m_capacity) | 359 | 2.14k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 2.14k | { | 364 | 262k | for (Index i = 0; i < m_count; i++) | 365 | 260k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 262k | for (Index i = m_count; i < size; i++) | 369 | 260k | { | 370 | 260k | new (newBuffer + i) T(); | 371 | 260k | } | 372 | 2.14k | } | 373 | 2.14k | _deallocateBuffer(); | 374 | 2.14k | } | 375 | 71.7k | m_buffer = newBuffer; | 376 | 71.7k | m_capacity = size; | 377 | 71.7k | } | 378 | 71.7k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 22 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 22 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 22 | { | 357 | 22 | T* newBuffer = _allocate(size); | 358 | 22 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 22 | m_buffer = newBuffer; | 376 | 22 | m_capacity = size; | 377 | 22 | } | 378 | 22 | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 48 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 48 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 48 | { | 357 | 48 | T* newBuffer = _allocate(size); | 358 | 48 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 48 | m_buffer = newBuffer; | 376 | 48 | m_capacity = size; | 377 | 48 | } | 378 | 48 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 817 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 817 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 817 | { | 357 | 817 | T* newBuffer = _allocate(size); | 358 | 817 | if (m_capacity) | 359 | 17 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 17 | { | 364 | 385 | for (Index i = 0; i < m_count; i++) | 365 | 368 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 385 | for (Index i = m_count; i < size; i++) | 369 | 368 | { | 370 | 368 | new (newBuffer + i) T(); | 371 | 368 | } | 372 | 17 | } | 373 | 17 | _deallocateBuffer(); | 374 | 17 | } | 375 | 817 | m_buffer = newBuffer; | 376 | 817 | m_capacity = size; | 377 | 817 | } | 378 | 817 | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 178k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 178k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 165k | { | 357 | 165k | T* newBuffer = _allocate(size); | 358 | 165k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 165k | m_buffer = newBuffer; | 376 | 165k | m_capacity = size; | 377 | 165k | } | 378 | 178k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 19.7k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 19.7k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 19.3k | { | 357 | 19.3k | T* newBuffer = _allocate(size); | 358 | 19.3k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 19.3k | m_buffer = newBuffer; | 376 | 19.3k | m_capacity = size; | 377 | 19.3k | } | 378 | 19.7k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIbNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 126 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 126 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 126 | { | 357 | 126 | T* newBuffer = _allocate(size); | 358 | 126 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 126 | m_buffer = newBuffer; | 376 | 126 | m_capacity = size; | 377 | 126 | } | 378 | 126 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 226 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 226 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 226 | { | 357 | 226 | T* newBuffer = _allocate(size); | 358 | 226 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 226 | m_buffer = newBuffer; | 376 | 226 | m_capacity = size; | 377 | 226 | } | 378 | 226 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 408 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 408 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 408 | { | 357 | 408 | T* newBuffer = _allocate(size); | 358 | 408 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 408 | m_buffer = newBuffer; | 376 | 408 | m_capacity = size; | 377 | 408 | } | 378 | 408 | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 43.3k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 43.3k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 39.6k | { | 357 | 39.6k | T* newBuffer = _allocate(size); | 358 | 39.6k | if (m_capacity) | 359 | 3.21k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3.21k | { | 364 | 295k | for (Index i = 0; i < m_count; i++) | 365 | 292k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 295k | for (Index i = m_count; i < size; i++) | 369 | 292k | { | 370 | 292k | new (newBuffer + i) T(); | 371 | 292k | } | 372 | 3.21k | } | 373 | 3.21k | _deallocateBuffer(); | 374 | 3.21k | } | 375 | 39.6k | m_buffer = newBuffer; | 376 | 39.6k | m_capacity = size; | 377 | 39.6k | } | 378 | 43.3k | } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 19.6k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 19.6k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 19.6k | { | 357 | 19.6k | T* newBuffer = _allocate(size); | 358 | 19.6k | if (m_capacity) | 359 | 102 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 102 | { | 364 | 507 | for (Index i = 0; i < m_count; i++) | 365 | 405 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 507 | for (Index i = m_count; i < size; i++) | 369 | 405 | { | 370 | 405 | new (newBuffer + i) T(); | 371 | 405 | } | 372 | 102 | } | 373 | 102 | _deallocateBuffer(); | 374 | 102 | } | 375 | 19.6k | m_buffer = newBuffer; | 376 | 19.6k | m_capacity = size; | 377 | 19.6k | } | 378 | 19.6k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 649k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 649k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 649k | { | 357 | 649k | T* newBuffer = _allocate(size); | 358 | 649k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 649k | m_buffer = newBuffer; | 376 | 649k | m_capacity = size; | 377 | 649k | } | 378 | 649k | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 22.8k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 22.8k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 22.8k | { | 357 | 22.8k | T* newBuffer = _allocate(size); | 358 | 22.8k | if (m_capacity) | 359 | 1.82k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1.82k | { | 364 | 31.1k | for (Index i = 0; i < m_count; i++) | 365 | 29.3k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 31.1k | for (Index i = m_count; i < size; i++) | 369 | 29.3k | { | 370 | 29.3k | new (newBuffer + i) T(); | 371 | 29.3k | } | 372 | 1.82k | } | 373 | 1.82k | _deallocateBuffer(); | 374 | 1.82k | } | 375 | 22.8k | m_buffer = newBuffer; | 376 | 22.8k | m_capacity = size; | 377 | 22.8k | } | 378 | 22.8k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 70.7k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 70.7k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 70.7k | { | 357 | 70.7k | T* newBuffer = _allocate(size); | 358 | 70.7k | if (m_capacity) | 359 | 32.5k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 32.5k | { | 364 | 1.11M | for (Index i = 0; i < m_count; i++) | 365 | 1.08M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.11M | for (Index i = m_count; i < size; i++) | 369 | 1.08M | { | 370 | 1.08M | new (newBuffer + i) T(); | 371 | 1.08M | } | 372 | 32.5k | } | 373 | 32.5k | _deallocateBuffer(); | 374 | 32.5k | } | 375 | 70.7k | m_buffer = newBuffer; | 376 | 70.7k | m_capacity = size; | 377 | 70.7k | } | 378 | 70.7k | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 408 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 408 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 408 | { | 357 | 408 | T* newBuffer = _allocate(size); | 358 | 408 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 408 | m_buffer = newBuffer; | 376 | 408 | m_capacity = size; | 377 | 408 | } | 378 | 408 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 323 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 323 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 323 | { | 357 | 323 | T* newBuffer = _allocate(size); | 358 | 323 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 323 | m_buffer = newBuffer; | 376 | 323 | m_capacity = size; | 377 | 323 | } | 378 | 323 | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 362 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 362 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 362 | { | 357 | 362 | T* newBuffer = _allocate(size); | 358 | 362 | if (m_capacity) | 359 | 34 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 34 | { | 364 | 2.00k | for (Index i = 0; i < m_count; i++) | 365 | 1.96k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 2.00k | for (Index i = m_count; i < size; i++) | 369 | 1.96k | { | 370 | 1.96k | new (newBuffer + i) T(); | 371 | 1.96k | } | 372 | 34 | } | 373 | 34 | _deallocateBuffer(); | 374 | 34 | } | 375 | 362 | m_buffer = newBuffer; | 376 | 362 | m_capacity = size; | 377 | 362 | } | 378 | 362 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.24k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.24k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.24k | { | 357 | 1.24k | T* newBuffer = _allocate(size); | 358 | 1.24k | if (m_capacity) | 359 | 81 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 81 | { | 364 | 1.37k | for (Index i = 0; i < m_count; i++) | 365 | 1.29k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.37k | for (Index i = m_count; i < size; i++) | 369 | 1.29k | { | 370 | 1.29k | new (newBuffer + i) T(); | 371 | 1.29k | } | 372 | 81 | } | 373 | 81 | _deallocateBuffer(); | 374 | 81 | } | 375 | 1.24k | m_buffer = newBuffer; | 376 | 1.24k | m_capacity = size; | 377 | 1.24k | } | 378 | 1.24k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 209k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 209k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 209k | { | 357 | 209k | T* newBuffer = _allocate(size); | 358 | 209k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 209k | m_buffer = newBuffer; | 376 | 209k | m_capacity = size; | 377 | 209k | } | 378 | 209k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 159 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 159 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 159 | { | 357 | 159 | T* newBuffer = _allocate(size); | 358 | 159 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 159 | m_buffer = newBuffer; | 376 | 159 | m_capacity = size; | 377 | 159 | } | 378 | 159 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 8 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 8 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 8 | { | 357 | 8 | T* newBuffer = _allocate(size); | 358 | 8 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 8 | m_buffer = newBuffer; | 376 | 8 | m_capacity = size; | 377 | 8 | } | 378 | 8 | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 31 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 31 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 31 | { | 357 | 31 | T* newBuffer = _allocate(size); | 358 | 31 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 31 | m_buffer = newBuffer; | 376 | 31 | m_capacity = size; | 377 | 31 | } | 378 | 31 | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.35k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.35k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.35k | { | 357 | 3.35k | T* newBuffer = _allocate(size); | 358 | 3.35k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3.35k | m_buffer = newBuffer; | 376 | 3.35k | m_capacity = size; | 377 | 3.35k | } | 378 | 3.35k | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 5 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 5 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 5 | { | 357 | 5 | T* newBuffer = _allocate(size); | 358 | 5 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 5 | m_buffer = newBuffer; | 376 | 5 | m_capacity = size; | 377 | 5 | } | 378 | 5 | } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 17.9k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 17.9k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 17.9k | { | 357 | 17.9k | T* newBuffer = _allocate(size); | 358 | 17.9k | if (m_capacity) | 359 | 686 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 686 | { | 364 | 8.45M | for (Index i = 0; i < m_count; i++) | 365 | 8.45M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 8.45M | for (Index i = m_count; i < size; i++) | 369 | 8.45M | { | 370 | 8.45M | new (newBuffer + i) T(); | 371 | 8.45M | } | 372 | 686 | } | 373 | 686 | _deallocateBuffer(); | 374 | 686 | } | 375 | 17.9k | m_buffer = newBuffer; | 376 | 17.9k | m_capacity = size; | 377 | 17.9k | } | 378 | 17.9k | } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 22 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 22 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 22 | { | 357 | 22 | T* newBuffer = _allocate(size); | 358 | 22 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 22 | m_buffer = newBuffer; | 376 | 22 | m_capacity = size; | 377 | 22 | } | 378 | 22 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 59.6k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 59.6k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 59.6k | { | 357 | 59.6k | T* newBuffer = _allocate(size); | 358 | 59.6k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 59.6k | m_buffer = newBuffer; | 376 | 59.6k | m_capacity = size; | 377 | 59.6k | } | 378 | 59.6k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.76k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.76k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.76k | { | 357 | 1.76k | T* newBuffer = _allocate(size); | 358 | 1.76k | if (m_capacity) | 359 | 50 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 50 | { | 364 | 1.84k | for (Index i = 0; i < m_count; i++) | 365 | 1.79k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.84k | for (Index i = m_count; i < size; i++) | 369 | 1.79k | { | 370 | 1.79k | new (newBuffer + i) T(); | 371 | 1.79k | } | 372 | 50 | } | 373 | 50 | _deallocateBuffer(); | 374 | 50 | } | 375 | 1.76k | m_buffer = newBuffer; | 376 | 1.76k | m_capacity = size; | 377 | 1.76k | } | 378 | 1.76k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 692k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 692k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 692k | { | 357 | 692k | T* newBuffer = _allocate(size); | 358 | 692k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 692k | m_buffer = newBuffer; | 376 | 692k | m_capacity = size; | 377 | 692k | } | 378 | 692k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 691 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 691 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 691 | { | 357 | 691 | T* newBuffer = _allocate(size); | 358 | 691 | if (m_capacity) | 359 | 22 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 22 | { | 364 | 502 | for (Index i = 0; i < m_count; i++) | 365 | 480 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 502 | for (Index i = m_count; i < size; i++) | 369 | 480 | { | 370 | 480 | new (newBuffer + i) T(); | 371 | 480 | } | 372 | 22 | } | 373 | 22 | _deallocateBuffer(); | 374 | 22 | } | 375 | 691 | m_buffer = newBuffer; | 376 | 691 | m_capacity = size; | 377 | 691 | } | 378 | 691 | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 91 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 91 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 91 | { | 357 | 91 | T* newBuffer = _allocate(size); | 358 | 91 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 91 | m_buffer = newBuffer; | 376 | 91 | m_capacity = size; | 377 | 91 | } | 378 | 91 | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 352 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 352 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 352 | { | 357 | 352 | T* newBuffer = _allocate(size); | 358 | 352 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 352 | m_buffer = newBuffer; | 376 | 352 | m_capacity = size; | 377 | 352 | } | 378 | 352 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 860 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 860 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 860 | { | 357 | 860 | T* newBuffer = _allocate(size); | 358 | 860 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 860 | m_buffer = newBuffer; | 376 | 860 | m_capacity = size; | 377 | 860 | } | 378 | 860 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 810 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 810 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 810 | { | 357 | 810 | T* newBuffer = _allocate(size); | 358 | 810 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 810 | m_buffer = newBuffer; | 376 | 810 | m_capacity = size; | 377 | 810 | } | 378 | 810 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 223 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 223 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 140 | { | 357 | 140 | T* newBuffer = _allocate(size); | 358 | 140 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 140 | m_buffer = newBuffer; | 376 | 140 | m_capacity = size; | 377 | 140 | } | 378 | 223 | } |
_ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 9 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 9 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 9 | { | 357 | 9 | T* newBuffer = _allocate(size); | 358 | 9 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 9 | m_buffer = newBuffer; | 376 | 9 | m_capacity = size; | 377 | 9 | } | 378 | 9 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.82k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.82k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.68k | { | 357 | 1.68k | T* newBuffer = _allocate(size); | 358 | 1.68k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.68k | m_buffer = newBuffer; | 376 | 1.68k | m_capacity = size; | 377 | 1.68k | } | 378 | 1.82k | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.76k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.76k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.76k | { | 357 | 1.76k | T* newBuffer = _allocate(size); | 358 | 1.76k | if (m_capacity) | 359 | 112 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 112 | { | 364 | 6.65k | for (Index i = 0; i < m_count; i++) | 365 | 6.54k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 6.65k | for (Index i = m_count; i < size; i++) | 369 | 6.54k | { | 370 | 6.54k | new (newBuffer + i) T(); | 371 | 6.54k | } | 372 | 112 | } | 373 | 112 | _deallocateBuffer(); | 374 | 112 | } | 375 | 1.76k | m_buffer = newBuffer; | 376 | 1.76k | m_capacity = size; | 377 | 1.76k | } | 378 | 1.76k | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 363 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 363 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 363 | { | 357 | 363 | T* newBuffer = _allocate(size); | 358 | 363 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 363 | m_buffer = newBuffer; | 376 | 363 | m_capacity = size; | 377 | 363 | } | 378 | 363 | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 140 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 140 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 140 | { | 357 | 140 | T* newBuffer = _allocate(size); | 358 | 140 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 140 | m_buffer = newBuffer; | 376 | 140 | m_capacity = size; | 377 | 140 | } | 378 | 140 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 457 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 457 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 457 | { | 357 | 457 | T* newBuffer = _allocate(size); | 358 | 457 | if (m_capacity) | 359 | 40 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 40 | { | 364 | 680 | for (Index i = 0; i < m_count; i++) | 365 | 640 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 680 | for (Index i = m_count; i < size; i++) | 369 | 640 | { | 370 | 640 | new (newBuffer + i) T(); | 371 | 640 | } | 372 | 40 | } | 373 | 40 | _deallocateBuffer(); | 374 | 40 | } | 375 | 457 | m_buffer = newBuffer; | 376 | 457 | m_capacity = size; | 377 | 457 | } | 378 | 457 | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 22.9k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 22.9k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 22.9k | { | 357 | 22.9k | T* newBuffer = _allocate(size); | 358 | 22.9k | if (m_capacity) | 359 | 3.45k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3.45k | { | 364 | 25.9M | for (Index i = 0; i < m_count; i++) | 365 | 25.9M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 25.9M | for (Index i = m_count; i < size; i++) | 369 | 25.9M | { | 370 | 25.9M | new (newBuffer + i) T(); | 371 | 25.9M | } | 372 | 3.45k | } | 373 | 3.45k | _deallocateBuffer(); | 374 | 3.45k | } | 375 | 22.9k | m_buffer = newBuffer; | 376 | 22.9k | m_capacity = size; | 377 | 22.9k | } | 378 | 22.9k | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 53 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 53 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 53 | { | 357 | 53 | T* newBuffer = _allocate(size); | 358 | 53 | if (m_capacity) | 359 | 25 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 25 | { | 364 | 65.5k | for (Index i = 0; i < m_count; i++) | 365 | 65.5k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 65.5k | for (Index i = m_count; i < size; i++) | 369 | 65.5k | { | 370 | 65.5k | new (newBuffer + i) T(); | 371 | 65.5k | } | 372 | 25 | } | 373 | 25 | _deallocateBuffer(); | 374 | 25 | } | 375 | 53 | m_buffer = newBuffer; | 376 | 53 | m_capacity = size; | 377 | 53 | } | 378 | 53 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 28 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 28 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 28 | { | 357 | 28 | T* newBuffer = _allocate(size); | 358 | 28 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 28 | m_buffer = newBuffer; | 376 | 28 | m_capacity = size; | 377 | 28 | } | 378 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 11 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 11 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 11 | { | 357 | 11 | T* newBuffer = _allocate(size); | 358 | 11 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 11 | m_buffer = newBuffer; | 376 | 11 | m_capacity = size; | 377 | 11 | } | 378 | 11 | } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 589 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 589 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 589 | { | 357 | 589 | T* newBuffer = _allocate(size); | 358 | 589 | if (m_capacity) | 359 | 447 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 447 | { | 364 | 29.9k | for (Index i = 0; i < m_count; i++) | 365 | 29.4k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 29.9k | for (Index i = m_count; i < size; i++) | 369 | 29.4k | { | 370 | 29.4k | new (newBuffer + i) T(); | 371 | 29.4k | } | 372 | 447 | } | 373 | 447 | _deallocateBuffer(); | 374 | 447 | } | 375 | 589 | m_buffer = newBuffer; | 376 | 589 | m_capacity = size; | 377 | 589 | } | 378 | 589 | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 74 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 74 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 74 | { | 357 | 74 | T* newBuffer = _allocate(size); | 358 | 74 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 74 | m_buffer = newBuffer; | 376 | 74 | m_capacity = size; | 377 | 74 | } | 378 | 74 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 32.5k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 32.5k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 14.2k | { | 357 | 14.2k | T* newBuffer = _allocate(size); | 358 | 14.2k | if (m_capacity) | 359 | 479 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 479 | { | 364 | 70.3k | for (Index i = 0; i < m_count; i++) | 365 | 69.8k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 71.3k | for (Index i = m_count; i < size; i++) | 369 | 70.8k | { | 370 | 70.8k | new (newBuffer + i) T(); | 371 | 70.8k | } | 372 | 479 | } | 373 | 479 | _deallocateBuffer(); | 374 | 479 | } | 375 | 14.2k | m_buffer = newBuffer; | 376 | 14.2k | m_capacity = size; | 377 | 14.2k | } | 378 | 32.5k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 26.4k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 26.4k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 26.4k | { | 357 | 26.4k | T* newBuffer = _allocate(size); | 358 | 26.4k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 26.4k | m_buffer = newBuffer; | 376 | 26.4k | m_capacity = size; | 377 | 26.4k | } | 378 | 26.4k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 124 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 124 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 124 | { | 357 | 124 | T* newBuffer = _allocate(size); | 358 | 124 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 124 | m_buffer = newBuffer; | 376 | 124 | m_capacity = size; | 377 | 124 | } | 378 | 124 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E7reserveEl Line | Count | Source | 351 | 4 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4 | { | 357 | 4 | T* newBuffer = _allocate(size); | 358 | 4 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 4 | m_buffer = newBuffer; | 376 | 4 | m_capacity = size; | 377 | 4 | } | 378 | 4 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4 | { | 357 | 4 | T* newBuffer = _allocate(size); | 358 | 4 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 4 | m_buffer = newBuffer; | 376 | 4 | m_capacity = size; | 377 | 4 | } | 378 | 4 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E7reserveEl Line | Count | Source | 351 | 4 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4 | { | 357 | 4 | T* newBuffer = _allocate(size); | 358 | 4 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 4 | m_buffer = newBuffer; | 376 | 4 | m_capacity = size; | 377 | 4 | } | 378 | 4 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 695 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 695 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 695 | { | 357 | 695 | T* newBuffer = _allocate(size); | 358 | 695 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 695 | m_buffer = newBuffer; | 376 | 695 | m_capacity = size; | 377 | 695 | } | 378 | 695 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 5.07k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 5.07k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 5.07k | { | 357 | 5.07k | T* newBuffer = _allocate(size); | 358 | 5.07k | if (m_capacity) | 359 | 979 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 979 | { | 364 | 97.3k | for (Index i = 0; i < m_count; i++) | 365 | 96.3k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 97.3k | for (Index i = m_count; i < size; i++) | 369 | 96.3k | { | 370 | 96.3k | new (newBuffer + i) T(); | 371 | 96.3k | } | 372 | 979 | } | 373 | 979 | _deallocateBuffer(); | 374 | 979 | } | 375 | 5.07k | m_buffer = newBuffer; | 376 | 5.07k | m_capacity = size; | 377 | 5.07k | } | 378 | 5.07k | } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4 | { | 357 | 4 | T* newBuffer = _allocate(size); | 358 | 4 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 4 | m_buffer = newBuffer; | 376 | 4 | m_capacity = size; | 377 | 4 | } | 378 | 4 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 19 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 19 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 19 | { | 357 | 19 | T* newBuffer = _allocate(size); | 358 | 19 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 19 | m_buffer = newBuffer; | 376 | 19 | m_capacity = size; | 377 | 19 | } | 378 | 19 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 81 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 81 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 81 | { | 357 | 81 | T* newBuffer = _allocate(size); | 358 | 81 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 81 | m_buffer = newBuffer; | 376 | 81 | m_capacity = size; | 377 | 81 | } | 378 | 81 | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 137 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 137 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 137 | { | 357 | 137 | T* newBuffer = _allocate(size); | 358 | 137 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 137 | m_buffer = newBuffer; | 376 | 137 | m_capacity = size; | 377 | 137 | } | 378 | 137 | } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 5 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 5 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 5 | { | 357 | 5 | T* newBuffer = _allocate(size); | 358 | 5 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 5 | m_buffer = newBuffer; | 376 | 5 | m_capacity = size; | 377 | 5 | } | 378 | 5 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 21 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 21 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 21 | { | 357 | 21 | T* newBuffer = _allocate(size); | 358 | 21 | if (m_capacity) | 359 | 1 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1 | { | 364 | 17 | for (Index i = 0; i < m_count; i++) | 365 | 16 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 17 | for (Index i = m_count; i < size; i++) | 369 | 16 | { | 370 | 16 | new (newBuffer + i) T(); | 371 | 16 | } | 372 | 1 | } | 373 | 1 | _deallocateBuffer(); | 374 | 1 | } | 375 | 21 | m_buffer = newBuffer; | 376 | 21 | m_capacity = size; | 377 | 21 | } | 378 | 21 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 13 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 13 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 13 | { | 357 | 13 | T* newBuffer = _allocate(size); | 358 | 13 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 13 | m_buffer = newBuffer; | 376 | 13 | m_capacity = size; | 377 | 13 | } | 378 | 13 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 210k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 210k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 210k | { | 357 | 210k | T* newBuffer = _allocate(size); | 358 | 210k | if (m_capacity) | 359 | 16.8k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 16.8k | { | 364 | 1.46M | for (Index i = 0; i < m_count; i++) | 365 | 1.44M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.46M | for (Index i = m_count; i < size; i++) | 369 | 1.44M | { | 370 | 1.44M | new (newBuffer + i) T(); | 371 | 1.44M | } | 372 | 16.8k | } | 373 | 16.8k | _deallocateBuffer(); | 374 | 16.8k | } | 375 | 210k | m_buffer = newBuffer; | 376 | 210k | m_capacity = size; | 377 | 210k | } | 378 | 210k | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 81.8k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 81.8k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 81.8k | { | 357 | 81.8k | T* newBuffer = _allocate(size); | 358 | 81.8k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 81.8k | m_buffer = newBuffer; | 376 | 81.8k | m_capacity = size; | 377 | 81.8k | } | 378 | 81.8k | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 22 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 22 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 22 | { | 357 | 22 | T* newBuffer = _allocate(size); | 358 | 22 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 22 | m_buffer = newBuffer; | 376 | 22 | m_capacity = size; | 377 | 22 | } | 378 | 22 | } |
_ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 34 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 34 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 34 | { | 357 | 34 | T* newBuffer = _allocate(size); | 358 | 34 | if (m_capacity) | 359 | 21 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 21 | { | 364 | 741 | for (Index i = 0; i < m_count; i++) | 365 | 720 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 741 | for (Index i = m_count; i < size; i++) | 369 | 720 | { | 370 | 720 | new (newBuffer + i) T(); | 371 | 720 | } | 372 | 21 | } | 373 | 21 | _deallocateBuffer(); | 374 | 21 | } | 375 | 34 | m_buffer = newBuffer; | 376 | 34 | m_capacity = size; | 377 | 34 | } | 378 | 34 | } |
_ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 12 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 12 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 12 | { | 357 | 12 | T* newBuffer = _allocate(size); | 358 | 12 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 12 | m_buffer = newBuffer; | 376 | 12 | m_capacity = size; | 377 | 12 | } | 378 | 12 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 278 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 278 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 278 | { | 357 | 278 | T* newBuffer = _allocate(size); | 358 | 278 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 278 | m_buffer = newBuffer; | 376 | 278 | m_capacity = size; | 377 | 278 | } | 378 | 278 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 46 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 46 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 46 | { | 357 | 46 | T* newBuffer = _allocate(size); | 358 | 46 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 46 | m_buffer = newBuffer; | 376 | 46 | m_capacity = size; | 377 | 46 | } | 378 | 46 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E7reserveEl Line | Count | Source | 351 | 19 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 19 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 19 | { | 357 | 19 | T* newBuffer = _allocate(size); | 358 | 19 | if (m_capacity) | 359 | 6 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 6 | { | 364 | 102 | for (Index i = 0; i < m_count; i++) | 365 | 96 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 102 | for (Index i = m_count; i < size; i++) | 369 | 96 | { | 370 | 96 | new (newBuffer + i) T(); | 371 | 96 | } | 372 | 6 | } | 373 | 6 | _deallocateBuffer(); | 374 | 6 | } | 375 | 19 | m_buffer = newBuffer; | 376 | 19 | m_capacity = size; | 377 | 19 | } | 378 | 19 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.36k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.36k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.36k | { | 357 | 2.36k | T* newBuffer = _allocate(size); | 358 | 2.36k | if (m_capacity) | 359 | 19 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 19 | { | 364 | 4.41k | for (Index i = 0; i < m_count; i++) | 365 | 4.40k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 4.41k | for (Index i = m_count; i < size; i++) | 369 | 4.40k | { | 370 | 4.40k | new (newBuffer + i) T(); | 371 | 4.40k | } | 372 | 19 | } | 373 | 19 | _deallocateBuffer(); | 374 | 19 | } | 375 | 2.36k | m_buffer = newBuffer; | 376 | 2.36k | m_capacity = size; | 377 | 2.36k | } | 378 | 2.36k | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 16 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 16 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 16 | { | 357 | 16 | T* newBuffer = _allocate(size); | 358 | 16 | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 51 | for (Index i = 0; i < m_count; i++) | 365 | 48 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 51 | for (Index i = m_count; i < size; i++) | 369 | 48 | { | 370 | 48 | new (newBuffer + i) T(); | 371 | 48 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 16 | m_buffer = newBuffer; | 376 | 16 | m_capacity = size; | 377 | 16 | } | 378 | 16 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 283 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 283 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 283 | { | 357 | 283 | T* newBuffer = _allocate(size); | 358 | 283 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 283 | m_buffer = newBuffer; | 376 | 283 | m_capacity = size; | 377 | 283 | } | 378 | 283 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 742 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 742 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 742 | { | 357 | 742 | T* newBuffer = _allocate(size); | 358 | 742 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 742 | m_buffer = newBuffer; | 376 | 742 | m_capacity = size; | 377 | 742 | } | 378 | 742 | } |
Unexecuted instantiation: _ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 68 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 68 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 68 | { | 357 | 68 | T* newBuffer = _allocate(size); | 358 | 68 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 68 | m_buffer = newBuffer; | 376 | 68 | m_capacity = size; | 377 | 68 | } | 378 | 68 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 6 | { | 357 | 6 | T* newBuffer = _allocate(size); | 358 | 6 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 6 | m_buffer = newBuffer; | 376 | 6 | m_capacity = size; | 377 | 6 | } | 378 | 6 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 286 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 286 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 286 | { | 357 | 286 | T* newBuffer = _allocate(size); | 358 | 286 | if (m_capacity) | 359 | 123 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 123 | { | 364 | 2.09k | for (Index i = 0; i < m_count; i++) | 365 | 1.96k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 2.09k | for (Index i = m_count; i < size; i++) | 369 | 1.96k | { | 370 | 1.96k | new (newBuffer + i) T(); | 371 | 1.96k | } | 372 | 123 | } | 373 | 123 | _deallocateBuffer(); | 374 | 123 | } | 375 | 286 | m_buffer = newBuffer; | 376 | 286 | m_capacity = size; | 377 | 286 | } | 378 | 286 | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 435 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 435 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 435 | { | 357 | 435 | T* newBuffer = _allocate(size); | 358 | 435 | if (m_capacity) | 359 | 284 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 284 | { | 364 | 154k | for (Index i = 0; i < m_count; i++) | 365 | 154k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 154k | for (Index i = m_count; i < size; i++) | 369 | 154k | { | 370 | 154k | new (newBuffer + i) T(); | 371 | 154k | } | 372 | 284 | } | 373 | 284 | _deallocateBuffer(); | 374 | 284 | } | 375 | 435 | m_buffer = newBuffer; | 376 | 435 | m_capacity = size; | 377 | 435 | } | 378 | 435 | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 8.87k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 8.87k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 8.87k | { | 357 | 8.87k | T* newBuffer = _allocate(size); | 358 | 8.87k | if (m_capacity) | 359 | 310 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 310 | { | 364 | 19.6k | for (Index i = 0; i < m_count; i++) | 365 | 19.3k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 19.6k | for (Index i = m_count; i < size; i++) | 369 | 19.3k | { | 370 | 19.3k | new (newBuffer + i) T(); | 371 | 19.3k | } | 372 | 310 | } | 373 | 310 | _deallocateBuffer(); | 374 | 310 | } | 375 | 8.87k | m_buffer = newBuffer; | 376 | 8.87k | m_capacity = size; | 377 | 8.87k | } | 378 | 8.87k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 80 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 80 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 80 | { | 357 | 80 | T* newBuffer = _allocate(size); | 358 | 80 | if (m_capacity) | 359 | 1 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1 | { | 364 | 17 | for (Index i = 0; i < m_count; i++) | 365 | 16 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 17 | for (Index i = m_count; i < size; i++) | 369 | 16 | { | 370 | 16 | new (newBuffer + i) T(); | 371 | 16 | } | 372 | 1 | } | 373 | 1 | _deallocateBuffer(); | 374 | 1 | } | 375 | 80 | m_buffer = newBuffer; | 376 | 80 | m_capacity = size; | 377 | 80 | } | 378 | 80 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 22.2k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 22.2k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 22.2k | { | 357 | 22.2k | T* newBuffer = _allocate(size); | 358 | 22.2k | if (m_capacity) | 359 | 5.93k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 5.93k | { | 364 | 502k | for (Index i = 0; i < m_count; i++) | 365 | 496k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 502k | for (Index i = m_count; i < size; i++) | 369 | 496k | { | 370 | 496k | new (newBuffer + i) T(); | 371 | 496k | } | 372 | 5.93k | } | 373 | 5.93k | _deallocateBuffer(); | 374 | 5.93k | } | 375 | 22.2k | m_buffer = newBuffer; | 376 | 22.2k | m_capacity = size; | 377 | 22.2k | } | 378 | 22.2k | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 16.2k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 16.2k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 16.2k | { | 357 | 16.2k | T* newBuffer = _allocate(size); | 358 | 16.2k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 16.2k | m_buffer = newBuffer; | 376 | 16.2k | m_capacity = size; | 377 | 16.2k | } | 378 | 16.2k | } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 195 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 195 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 195 | { | 357 | 195 | T* newBuffer = _allocate(size); | 358 | 195 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 195 | m_buffer = newBuffer; | 376 | 195 | m_capacity = size; | 377 | 195 | } | 378 | 195 | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 14 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 14 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 14 | { | 357 | 14 | T* newBuffer = _allocate(size); | 358 | 14 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 14 | m_buffer = newBuffer; | 376 | 14 | m_capacity = size; | 377 | 14 | } | 378 | 14 | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 70 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 70 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 70 | { | 357 | 70 | T* newBuffer = _allocate(size); | 358 | 70 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 70 | m_buffer = newBuffer; | 376 | 70 | m_capacity = size; | 377 | 70 | } | 378 | 70 | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 48 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 48 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 48 | { | 357 | 48 | T* newBuffer = _allocate(size); | 358 | 48 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 48 | m_buffer = newBuffer; | 376 | 48 | m_capacity = size; | 377 | 48 | } | 378 | 48 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 113 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 113 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 113 | { | 357 | 113 | T* newBuffer = _allocate(size); | 358 | 113 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 113 | m_buffer = newBuffer; | 376 | 113 | m_capacity = size; | 377 | 113 | } | 378 | 113 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 10.1k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 10.1k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 10.1k | { | 357 | 10.1k | T* newBuffer = _allocate(size); | 358 | 10.1k | if (m_capacity) | 359 | 1.08k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1.08k | { | 364 | 110k | for (Index i = 0; i < m_count; i++) | 365 | 109k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 110k | for (Index i = m_count; i < size; i++) | 369 | 109k | { | 370 | 109k | new (newBuffer + i) T(); | 371 | 109k | } | 372 | 1.08k | } | 373 | 1.08k | _deallocateBuffer(); | 374 | 1.08k | } | 375 | 10.1k | m_buffer = newBuffer; | 376 | 10.1k | m_capacity = size; | 377 | 10.1k | } | 378 | 10.1k | } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 44 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 44 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 44 | { | 357 | 44 | T* newBuffer = _allocate(size); | 358 | 44 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 44 | m_buffer = newBuffer; | 376 | 44 | m_capacity = size; | 377 | 44 | } | 378 | 44 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 11 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 11 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 11 | { | 357 | 11 | T* newBuffer = _allocate(size); | 358 | 11 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 11 | m_buffer = newBuffer; | 376 | 11 | m_capacity = size; | 377 | 11 | } | 378 | 11 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 122 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 122 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 122 | { | 357 | 122 | T* newBuffer = _allocate(size); | 358 | 122 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 122 | m_buffer = newBuffer; | 376 | 122 | m_capacity = size; | 377 | 122 | } | 378 | 122 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 31 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 31 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 31 | { | 357 | 31 | T* newBuffer = _allocate(size); | 358 | 31 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 31 | m_buffer = newBuffer; | 376 | 31 | m_capacity = size; | 377 | 31 | } | 378 | 31 | } |
_ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 31 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 31 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 31 | { | 357 | 31 | T* newBuffer = _allocate(size); | 358 | 31 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 31 | m_buffer = newBuffer; | 376 | 31 | m_capacity = size; | 377 | 31 | } | 378 | 31 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 6 | { | 357 | 6 | T* newBuffer = _allocate(size); | 358 | 6 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 6 | m_buffer = newBuffer; | 376 | 6 | m_capacity = size; | 377 | 6 | } | 378 | 6 | } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 196 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 196 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 196 | { | 357 | 196 | T* newBuffer = _allocate(size); | 358 | 196 | if (m_capacity) | 359 | 27 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 27 | { | 364 | 507 | for (Index i = 0; i < m_count; i++) | 365 | 480 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 507 | for (Index i = m_count; i < size; i++) | 369 | 480 | { | 370 | 480 | new (newBuffer + i) T(); | 371 | 480 | } | 372 | 27 | } | 373 | 27 | _deallocateBuffer(); | 374 | 27 | } | 375 | 196 | m_buffer = newBuffer; | 376 | 196 | m_capacity = size; | 377 | 196 | } | 378 | 196 | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 988 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 988 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 988 | { | 357 | 988 | T* newBuffer = _allocate(size); | 358 | 988 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 988 | m_buffer = newBuffer; | 376 | 988 | m_capacity = size; | 377 | 988 | } | 378 | 988 | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 71 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 71 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 71 | { | 357 | 71 | T* newBuffer = _allocate(size); | 358 | 71 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 71 | m_buffer = newBuffer; | 376 | 71 | m_capacity = size; | 377 | 71 | } | 378 | 71 | } |
_ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 846 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 846 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 846 | { | 357 | 846 | T* newBuffer = _allocate(size); | 358 | 846 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 846 | m_buffer = newBuffer; | 376 | 846 | m_capacity = size; | 377 | 846 | } | 378 | 846 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 127 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 127 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 127 | { | 357 | 127 | T* newBuffer = _allocate(size); | 358 | 127 | if (m_capacity) | 359 | 2 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 2 | { | 364 | 50 | for (Index i = 0; i < m_count; i++) | 365 | 48 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 50 | for (Index i = m_count; i < size; i++) | 369 | 48 | { | 370 | 48 | new (newBuffer + i) T(); | 371 | 48 | } | 372 | 2 | } | 373 | 2 | _deallocateBuffer(); | 374 | 2 | } | 375 | 127 | m_buffer = newBuffer; | 376 | 127 | m_capacity = size; | 377 | 127 | } | 378 | 127 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 235 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 235 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 235 | { | 357 | 235 | T* newBuffer = _allocate(size); | 358 | 235 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 235 | m_buffer = newBuffer; | 376 | 235 | m_capacity = size; | 377 | 235 | } | 378 | 235 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 89 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 89 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 89 | { | 357 | 89 | T* newBuffer = _allocate(size); | 358 | 89 | if (m_capacity) | 359 | 7 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 7 | { | 364 | 151 | for (Index i = 0; i < m_count; i++) | 365 | 144 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 151 | for (Index i = m_count; i < size; i++) | 369 | 144 | { | 370 | 144 | new (newBuffer + i) T(); | 371 | 144 | } | 372 | 7 | } | 373 | 7 | _deallocateBuffer(); | 374 | 7 | } | 375 | 89 | m_buffer = newBuffer; | 376 | 89 | m_capacity = size; | 377 | 89 | } | 378 | 89 | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 511 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 511 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 511 | { | 357 | 511 | T* newBuffer = _allocate(size); | 358 | 511 | if (m_capacity) | 359 | 251 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 251 | { | 364 | 10.2k | for (Index i = 0; i < m_count; i++) | 365 | 9.98k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 10.2k | for (Index i = m_count; i < size; i++) | 369 | 9.98k | { | 370 | 9.98k | new (newBuffer + i) T(); | 371 | 9.98k | } | 372 | 251 | } | 373 | 251 | _deallocateBuffer(); | 374 | 251 | } | 375 | 511 | m_buffer = newBuffer; | 376 | 511 | m_capacity = size; | 377 | 511 | } | 378 | 511 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 117 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 117 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 117 | { | 357 | 117 | T* newBuffer = _allocate(size); | 358 | 117 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 117 | m_buffer = newBuffer; | 376 | 117 | m_capacity = size; | 377 | 117 | } | 378 | 117 | } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 23 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 23 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 23 | { | 357 | 23 | T* newBuffer = _allocate(size); | 358 | 23 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 23 | m_buffer = newBuffer; | 376 | 23 | m_capacity = size; | 377 | 23 | } | 378 | 23 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.44k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.44k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.44k | { | 357 | 1.44k | T* newBuffer = _allocate(size); | 358 | 1.44k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.44k | m_buffer = newBuffer; | 376 | 1.44k | m_capacity = size; | 377 | 1.44k | } | 378 | 1.44k | } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 41.7k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 41.7k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 41.7k | { | 357 | 41.7k | T* newBuffer = _allocate(size); | 358 | 41.7k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 41.7k | m_buffer = newBuffer; | 376 | 41.7k | m_capacity = size; | 377 | 41.7k | } | 378 | 41.7k | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 41.7k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 41.7k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 41.7k | { | 357 | 41.7k | T* newBuffer = _allocate(size); | 358 | 41.7k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 41.7k | m_buffer = newBuffer; | 376 | 41.7k | m_capacity = size; | 377 | 41.7k | } | 378 | 41.7k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4.26k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4.26k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4.26k | { | 357 | 4.26k | T* newBuffer = _allocate(size); | 358 | 4.26k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 4.26k | m_buffer = newBuffer; | 376 | 4.26k | m_capacity = size; | 377 | 4.26k | } | 378 | 4.26k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.57k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.57k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.57k | { | 357 | 3.57k | T* newBuffer = _allocate(size); | 358 | 3.57k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3.57k | m_buffer = newBuffer; | 376 | 3.57k | m_capacity = size; | 377 | 3.57k | } | 378 | 3.57k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 12 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 12 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 12 | { | 357 | 12 | T* newBuffer = _allocate(size); | 358 | 12 | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 51 | for (Index i = 0; i < m_count; i++) | 365 | 48 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 51 | for (Index i = m_count; i < size; i++) | 369 | 48 | { | 370 | 48 | new (newBuffer + i) T(); | 371 | 48 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 12 | m_buffer = newBuffer; | 376 | 12 | m_capacity = size; | 377 | 12 | } | 378 | 12 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 6 | { | 357 | 6 | T* newBuffer = _allocate(size); | 358 | 6 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 6 | m_buffer = newBuffer; | 376 | 6 | m_capacity = size; | 377 | 6 | } | 378 | 6 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 6 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 6 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 6 | { | 357 | 6 | T* newBuffer = _allocate(size); | 358 | 6 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 6 | m_buffer = newBuffer; | 376 | 6 | m_capacity = size; | 377 | 6 | } | 378 | 6 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 25 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 25 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 25 | { | 357 | 25 | T* newBuffer = _allocate(size); | 358 | 25 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 25 | m_buffer = newBuffer; | 376 | 25 | m_capacity = size; | 377 | 25 | } | 378 | 25 | } |
Unexecuted instantiation: _ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 34 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 34 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 34 | { | 357 | 34 | T* newBuffer = _allocate(size); | 358 | 34 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 34 | m_buffer = newBuffer; | 376 | 34 | m_capacity = size; | 377 | 34 | } | 378 | 34 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 52 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 52 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 52 | { | 357 | 52 | T* newBuffer = _allocate(size); | 358 | 52 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 52 | m_buffer = newBuffer; | 376 | 52 | m_capacity = size; | 377 | 52 | } | 378 | 52 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 134 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 134 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 134 | { | 357 | 134 | T* newBuffer = _allocate(size); | 358 | 134 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 134 | m_buffer = newBuffer; | 376 | 134 | m_capacity = size; | 377 | 134 | } | 378 | 134 | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 160 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 160 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 160 | { | 357 | 160 | T* newBuffer = _allocate(size); | 358 | 160 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 160 | m_buffer = newBuffer; | 376 | 160 | m_capacity = size; | 377 | 160 | } | 378 | 160 | } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 170 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 170 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 170 | { | 357 | 170 | T* newBuffer = _allocate(size); | 358 | 170 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 170 | m_buffer = newBuffer; | 376 | 170 | m_capacity = size; | 377 | 170 | } | 378 | 170 | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.83k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.83k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.83k | { | 357 | 1.83k | T* newBuffer = _allocate(size); | 358 | 1.83k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1.83k | m_buffer = newBuffer; | 376 | 1.83k | m_capacity = size; | 377 | 1.83k | } | 378 | 1.83k | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 9.53k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 9.53k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 9.53k | { | 357 | 9.53k | T* newBuffer = _allocate(size); | 358 | 9.53k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 9.53k | m_buffer = newBuffer; | 376 | 9.53k | m_capacity = size; | 377 | 9.53k | } | 378 | 9.53k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE7reserveEl slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 98.0k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 98.0k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 98.0k | { | 357 | 98.0k | T* newBuffer = _allocate(size); | 358 | 98.0k | if (m_capacity) | 359 | 2 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 2 | { | 364 | 34 | for (Index i = 0; i < m_count; i++) | 365 | 32 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 34 | for (Index i = m_count; i < size; i++) | 369 | 32 | { | 370 | 32 | new (newBuffer + i) T(); | 371 | 32 | } | 372 | 2 | } | 373 | 2 | _deallocateBuffer(); | 374 | 2 | } | 375 | 98.0k | m_buffer = newBuffer; | 376 | 98.0k | m_capacity = size; | 377 | 98.0k | } | 378 | 98.0k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 54 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 54 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 54 | { | 357 | 54 | T* newBuffer = _allocate(size); | 358 | 54 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 54 | m_buffer = newBuffer; | 376 | 54 | m_capacity = size; | 377 | 54 | } | 378 | 54 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 48 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 48 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 48 | { | 357 | 48 | T* newBuffer = _allocate(size); | 358 | 48 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 48 | m_buffer = newBuffer; | 376 | 48 | m_capacity = size; | 377 | 48 | } | 378 | 48 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 71 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 71 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 71 | { | 357 | 71 | T* newBuffer = _allocate(size); | 358 | 71 | if (m_capacity) | 359 | 52 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 52 | { | 364 | 14.3k | for (Index i = 0; i < m_count; i++) | 365 | 14.2k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 14.3k | for (Index i = m_count; i < size; i++) | 369 | 14.2k | { | 370 | 14.2k | new (newBuffer + i) T(); | 371 | 14.2k | } | 372 | 52 | } | 373 | 52 | _deallocateBuffer(); | 374 | 52 | } | 375 | 71 | m_buffer = newBuffer; | 376 | 71 | m_capacity = size; | 377 | 71 | } | 378 | 71 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 22 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 22 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 22 | { | 357 | 22 | T* newBuffer = _allocate(size); | 358 | 22 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 22 | m_buffer = newBuffer; | 376 | 22 | m_capacity = size; | 377 | 22 | } | 378 | 22 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 8 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 8 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 8 | { | 357 | 8 | T* newBuffer = _allocate(size); | 358 | 8 | if (m_capacity) | 359 | 1 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1 | { | 364 | 17 | for (Index i = 0; i < m_count; i++) | 365 | 16 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 17 | for (Index i = m_count; i < size; i++) | 369 | 16 | { | 370 | 16 | new (newBuffer + i) T(); | 371 | 16 | } | 372 | 1 | } | 373 | 1 | _deallocateBuffer(); | 374 | 1 | } | 375 | 8 | m_buffer = newBuffer; | 376 | 8 | m_capacity = size; | 377 | 8 | } | 378 | 8 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 48 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 48 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 48 | { | 357 | 48 | T* newBuffer = _allocate(size); | 358 | 48 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 48 | m_buffer = newBuffer; | 376 | 48 | m_capacity = size; | 377 | 48 | } | 378 | 48 | } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 581 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 581 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 581 | { | 357 | 581 | T* newBuffer = _allocate(size); | 358 | 581 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 581 | m_buffer = newBuffer; | 376 | 581 | m_capacity = size; | 377 | 581 | } | 378 | 581 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 581 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 581 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 581 | { | 357 | 581 | T* newBuffer = _allocate(size); | 358 | 581 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 581 | m_buffer = newBuffer; | 376 | 581 | m_capacity = size; | 377 | 581 | } | 378 | 581 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 385 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 385 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 385 | { | 357 | 385 | T* newBuffer = _allocate(size); | 358 | 385 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 385 | m_buffer = newBuffer; | 376 | 385 | m_capacity = size; | 377 | 385 | } | 378 | 385 | } |
_ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 390 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 390 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 390 | { | 357 | 390 | T* newBuffer = _allocate(size); | 358 | 390 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 390 | m_buffer = newBuffer; | 376 | 390 | m_capacity = size; | 377 | 390 | } | 378 | 390 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.86k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.86k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.86k | { | 357 | 2.86k | T* newBuffer = _allocate(size); | 358 | 2.86k | if (m_capacity) | 359 | 112 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 112 | { | 364 | 6.65k | for (Index i = 0; i < m_count; i++) | 365 | 6.54k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 6.65k | for (Index i = m_count; i < size; i++) | 369 | 6.54k | { | 370 | 6.54k | new (newBuffer + i) T(); | 371 | 6.54k | } | 372 | 112 | } | 373 | 112 | _deallocateBuffer(); | 374 | 112 | } | 375 | 2.86k | m_buffer = newBuffer; | 376 | 2.86k | m_capacity = size; | 377 | 2.86k | } | 378 | 2.86k | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 150 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 150 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 150 | { | 357 | 150 | T* newBuffer = _allocate(size); | 358 | 150 | if (m_capacity) | 359 | 8 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 8 | { | 364 | 168 | for (Index i = 0; i < m_count; i++) | 365 | 160 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 168 | for (Index i = m_count; i < size; i++) | 369 | 160 | { | 370 | 160 | new (newBuffer + i) T(); | 371 | 160 | } | 372 | 8 | } | 373 | 8 | _deallocateBuffer(); | 374 | 8 | } | 375 | 150 | m_buffer = newBuffer; | 376 | 150 | m_capacity = size; | 377 | 150 | } | 378 | 150 | } |
_ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 20.3k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 20.3k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 20.3k | { | 357 | 20.3k | T* newBuffer = _allocate(size); | 358 | 20.3k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 20.3k | m_buffer = newBuffer; | 376 | 20.3k | m_capacity = size; | 377 | 20.3k | } | 378 | 20.3k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 233 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 233 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 233 | { | 357 | 233 | T* newBuffer = _allocate(size); | 358 | 233 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 233 | m_buffer = newBuffer; | 376 | 233 | m_capacity = size; | 377 | 233 | } | 378 | 233 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 54 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 54 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 54 | { | 357 | 54 | T* newBuffer = _allocate(size); | 358 | 54 | if (m_capacity) | 359 | 27 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 27 | { | 364 | 459 | for (Index i = 0; i < m_count; i++) | 365 | 432 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 459 | for (Index i = m_count; i < size; i++) | 369 | 432 | { | 370 | 432 | new (newBuffer + i) T(); | 371 | 432 | } | 372 | 27 | } | 373 | 27 | _deallocateBuffer(); | 374 | 27 | } | 375 | 54 | m_buffer = newBuffer; | 376 | 54 | m_capacity = size; | 377 | 54 | } | 378 | 54 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 246 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 246 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 246 | { | 357 | 246 | T* newBuffer = _allocate(size); | 358 | 246 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 246 | m_buffer = newBuffer; | 376 | 246 | m_capacity = size; | 377 | 246 | } | 378 | 246 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 150 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 150 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 150 | { | 357 | 150 | T* newBuffer = _allocate(size); | 358 | 150 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 150 | m_buffer = newBuffer; | 376 | 150 | m_capacity = size; | 377 | 150 | } | 378 | 150 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 219 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 219 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 219 | { | 357 | 219 | T* newBuffer = _allocate(size); | 358 | 219 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 219 | m_buffer = newBuffer; | 376 | 219 | m_capacity = size; | 377 | 219 | } | 378 | 219 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 140 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 140 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 140 | { | 357 | 140 | T* newBuffer = _allocate(size); | 358 | 140 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 140 | m_buffer = newBuffer; | 376 | 140 | m_capacity = size; | 377 | 140 | } | 378 | 140 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 543 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 543 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 543 | { | 357 | 543 | T* newBuffer = _allocate(size); | 358 | 543 | if (m_capacity) | 359 | 17 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 17 | { | 364 | 289 | for (Index i = 0; i < m_count; i++) | 365 | 272 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 289 | for (Index i = m_count; i < size; i++) | 369 | 272 | { | 370 | 272 | new (newBuffer + i) T(); | 371 | 272 | } | 372 | 17 | } | 373 | 17 | _deallocateBuffer(); | 374 | 17 | } | 375 | 543 | m_buffer = newBuffer; | 376 | 543 | m_capacity = size; | 377 | 543 | } | 378 | 543 | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 381 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 381 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 381 | { | 357 | 381 | T* newBuffer = _allocate(size); | 358 | 381 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 381 | m_buffer = newBuffer; | 376 | 381 | m_capacity = size; | 377 | 381 | } | 378 | 381 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 849 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 849 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 849 | { | 357 | 849 | T* newBuffer = _allocate(size); | 358 | 849 | if (m_capacity) | 359 | 12 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 12 | { | 364 | 268 | for (Index i = 0; i < m_count; i++) | 365 | 256 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 268 | for (Index i = m_count; i < size; i++) | 369 | 256 | { | 370 | 256 | new (newBuffer + i) T(); | 371 | 256 | } | 372 | 12 | } | 373 | 12 | _deallocateBuffer(); | 374 | 12 | } | 375 | 849 | m_buffer = newBuffer; | 376 | 849 | m_capacity = size; | 377 | 849 | } | 378 | 849 | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 757 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 757 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 757 | { | 357 | 757 | T* newBuffer = _allocate(size); | 358 | 757 | if (m_capacity) | 359 | 10 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 10 | { | 364 | 234 | for (Index i = 0; i < m_count; i++) | 365 | 224 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 234 | for (Index i = m_count; i < size; i++) | 369 | 224 | { | 370 | 224 | new (newBuffer + i) T(); | 371 | 224 | } | 372 | 10 | } | 373 | 10 | _deallocateBuffer(); | 374 | 10 | } | 375 | 757 | m_buffer = newBuffer; | 376 | 757 | m_capacity = size; | 377 | 757 | } | 378 | 757 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 302 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 302 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 302 | { | 357 | 302 | T* newBuffer = _allocate(size); | 358 | 302 | if (m_capacity) | 359 | 12 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 12 | { | 364 | 268 | for (Index i = 0; i < m_count; i++) | 365 | 256 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 268 | for (Index i = m_count; i < size; i++) | 369 | 256 | { | 370 | 256 | new (newBuffer + i) T(); | 371 | 256 | } | 372 | 12 | } | 373 | 12 | _deallocateBuffer(); | 374 | 12 | } | 375 | 302 | m_buffer = newBuffer; | 376 | 302 | m_capacity = size; | 377 | 302 | } | 378 | 302 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3 | { | 357 | 3 | T* newBuffer = _allocate(size); | 358 | 3 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3 | m_buffer = newBuffer; | 376 | 3 | m_capacity = size; | 377 | 3 | } | 378 | 3 | } |
_ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 50 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 50 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 50 | { | 357 | 50 | T* newBuffer = _allocate(size); | 358 | 50 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 50 | m_buffer = newBuffer; | 376 | 50 | m_capacity = size; | 377 | 50 | } | 378 | 50 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4 | { | 357 | 4 | T* newBuffer = _allocate(size); | 358 | 4 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 4 | m_buffer = newBuffer; | 376 | 4 | m_capacity = size; | 377 | 4 | } | 378 | 4 | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 10 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 10 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 10 | { | 357 | 10 | T* newBuffer = _allocate(size); | 358 | 10 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 10 | m_buffer = newBuffer; | 376 | 10 | m_capacity = size; | 377 | 10 | } | 378 | 10 | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.49k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.49k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.49k | { | 357 | 2.49k | T* newBuffer = _allocate(size); | 358 | 2.49k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2.49k | m_buffer = newBuffer; | 376 | 2.49k | m_capacity = size; | 377 | 2.49k | } | 378 | 2.49k | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 51 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 51 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 51 | { | 357 | 51 | T* newBuffer = _allocate(size); | 358 | 51 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 51 | m_buffer = newBuffer; | 376 | 51 | m_capacity = size; | 377 | 51 | } | 378 | 51 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 51 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 51 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 51 | { | 357 | 51 | T* newBuffer = _allocate(size); | 358 | 51 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 51 | m_buffer = newBuffer; | 376 | 51 | m_capacity = size; | 377 | 51 | } | 378 | 51 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 51 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 51 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 51 | { | 357 | 51 | T* newBuffer = _allocate(size); | 358 | 51 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 51 | m_buffer = newBuffer; | 376 | 51 | m_capacity = size; | 377 | 51 | } | 378 | 51 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 49 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 49 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 49 | { | 357 | 49 | T* newBuffer = _allocate(size); | 358 | 49 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 49 | m_buffer = newBuffer; | 376 | 49 | m_capacity = size; | 377 | 49 | } | 378 | 49 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 11 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 11 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 11 | { | 357 | 11 | T* newBuffer = _allocate(size); | 358 | 11 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 11 | m_buffer = newBuffer; | 376 | 11 | m_capacity = size; | 377 | 11 | } | 378 | 11 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 4 | { | 357 | 4 | T* newBuffer = _allocate(size); | 358 | 4 | if (m_capacity) | 359 | 1 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 1 | { | 364 | 17 | for (Index i = 0; i < m_count; i++) | 365 | 16 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 17 | for (Index i = m_count; i < size; i++) | 369 | 16 | { | 370 | 16 | new (newBuffer + i) T(); | 371 | 16 | } | 372 | 1 | } | 373 | 1 | _deallocateBuffer(); | 374 | 1 | } | 375 | 4 | m_buffer = newBuffer; | 376 | 4 | m_capacity = size; | 377 | 4 | } | 378 | 4 | } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 102k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 102k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 102k | { | 357 | 102k | T* newBuffer = _allocate(size); | 358 | 102k | if (m_capacity) | 359 | 72.0k | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 72.0k | { | 364 | 2.64M | for (Index i = 0; i < m_count; i++) | 365 | 2.57M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 2.64M | for (Index i = m_count; i < size; i++) | 369 | 2.57M | { | 370 | 2.57M | new (newBuffer + i) T(); | 371 | 2.57M | } | 372 | 72.0k | } | 373 | 72.0k | _deallocateBuffer(); | 374 | 72.0k | } | 375 | 102k | m_buffer = newBuffer; | 376 | 102k | m_capacity = size; | 377 | 102k | } | 378 | 102k | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 10 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 10 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 10 | { | 357 | 10 | T* newBuffer = _allocate(size); | 358 | 10 | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 115 | for (Index i = 0; i < m_count; i++) | 365 | 112 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 115 | for (Index i = m_count; i < size; i++) | 369 | 112 | { | 370 | 112 | new (newBuffer + i) T(); | 371 | 112 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 10 | m_buffer = newBuffer; | 376 | 10 | m_capacity = size; | 377 | 10 | } | 378 | 10 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 10 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 10 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 10 | { | 357 | 10 | T* newBuffer = _allocate(size); | 358 | 10 | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 115 | for (Index i = 0; i < m_count; i++) | 365 | 112 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 115 | for (Index i = m_count; i < size; i++) | 369 | 112 | { | 370 | 112 | new (newBuffer + i) T(); | 371 | 112 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 10 | m_buffer = newBuffer; | 376 | 10 | m_capacity = size; | 377 | 10 | } | 378 | 10 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 7 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 7 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 7 | { | 357 | 7 | T* newBuffer = _allocate(size); | 358 | 7 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 7 | m_buffer = newBuffer; | 376 | 7 | m_capacity = size; | 377 | 7 | } | 378 | 7 | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 184 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 184 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 184 | { | 357 | 184 | T* newBuffer = _allocate(size); | 358 | 184 | if (m_capacity) | 359 | 135 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 135 | { | 364 | 13.5k | for (Index i = 0; i < m_count; i++) | 365 | 13.3k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 13.5k | for (Index i = m_count; i < size; i++) | 369 | 13.3k | { | 370 | 13.3k | new (newBuffer + i) T(); | 371 | 13.3k | } | 372 | 135 | } | 373 | 135 | _deallocateBuffer(); | 374 | 135 | } | 375 | 184 | m_buffer = newBuffer; | 376 | 184 | m_capacity = size; | 377 | 184 | } | 378 | 184 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 704 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 704 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 704 | { | 357 | 704 | T* newBuffer = _allocate(size); | 358 | 704 | if (m_capacity) | 359 | 651 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 651 | { | 364 | 8.45M | for (Index i = 0; i < m_count; i++) | 365 | 8.45M | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 8.45M | for (Index i = m_count; i < size; i++) | 369 | 8.45M | { | 370 | 8.45M | new (newBuffer + i) T(); | 371 | 8.45M | } | 372 | 651 | } | 373 | 651 | _deallocateBuffer(); | 374 | 651 | } | 375 | 704 | m_buffer = newBuffer; | 376 | 704 | m_capacity = size; | 377 | 704 | } | 378 | 704 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 5.24k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 5.24k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 117 | { | 357 | 117 | T* newBuffer = _allocate(size); | 358 | 117 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 117 | m_buffer = newBuffer; | 376 | 117 | m_capacity = size; | 377 | 117 | } | 378 | 5.24k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 48 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 48 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 48 | { | 357 | 48 | T* newBuffer = _allocate(size); | 358 | 48 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 48 | m_buffer = newBuffer; | 376 | 48 | m_capacity = size; | 377 | 48 | } | 378 | 48 | } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 48 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 48 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 48 | { | 357 | 48 | T* newBuffer = _allocate(size); | 358 | 48 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 48 | m_buffer = newBuffer; | 376 | 48 | m_capacity = size; | 377 | 48 | } | 378 | 48 | } |
_ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 96 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 96 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 48 | { | 357 | 48 | T* newBuffer = _allocate(size); | 358 | 48 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 48 | m_buffer = newBuffer; | 376 | 48 | m_capacity = size; | 377 | 48 | } | 378 | 96 | } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 69 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 69 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 69 | { | 357 | 69 | T* newBuffer = _allocate(size); | 358 | 69 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 69 | m_buffer = newBuffer; | 376 | 69 | m_capacity = size; | 377 | 69 | } | 378 | 69 | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 4.00k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 4.00k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.29k | { | 357 | 1.29k | T* newBuffer = _allocate(size); | 358 | 1.29k | if (m_capacity) | 359 | 214 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 214 | { | 364 | 11.9k | for (Index i = 0; i < m_count; i++) | 365 | 11.7k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 5.25k | for (Index i = m_count; i < size; i++) | 369 | 5.04k | { | 370 | 5.04k | new (newBuffer + i) T(); | 371 | 5.04k | } | 372 | 214 | } | 373 | 214 | _deallocateBuffer(); | 374 | 214 | } | 375 | 1.29k | m_buffer = newBuffer; | 376 | 1.29k | m_capacity = size; | 377 | 1.29k | } | 378 | 4.00k | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 54 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 54 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 54 | { | 357 | 54 | T* newBuffer = _allocate(size); | 358 | 54 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 54 | m_buffer = newBuffer; | 376 | 54 | m_capacity = size; | 377 | 54 | } | 378 | 54 | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 69 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 69 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 69 | { | 357 | 69 | T* newBuffer = _allocate(size); | 358 | 69 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 69 | m_buffer = newBuffer; | 376 | 69 | m_capacity = size; | 377 | 69 | } | 378 | 69 | } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 324 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 324 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 324 | { | 357 | 324 | T* newBuffer = _allocate(size); | 358 | 324 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 324 | m_buffer = newBuffer; | 376 | 324 | m_capacity = size; | 377 | 324 | } | 378 | 324 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 10 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 10 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 10 | { | 357 | 10 | T* newBuffer = _allocate(size); | 358 | 10 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 10 | m_buffer = newBuffer; | 376 | 10 | m_capacity = size; | 377 | 10 | } | 378 | 10 | } |
_ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 412 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 412 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 412 | { | 357 | 412 | T* newBuffer = _allocate(size); | 358 | 412 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 412 | m_buffer = newBuffer; | 376 | 412 | m_capacity = size; | 377 | 412 | } | 378 | 412 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E7reserveEl Line | Count | Source | 351 | 130 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 130 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 130 | { | 357 | 130 | T* newBuffer = _allocate(size); | 358 | 130 | if (m_capacity) | 359 | 34 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 34 | { | 364 | 994 | for (Index i = 0; i < m_count; i++) | 365 | 960 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 994 | for (Index i = m_count; i < size; i++) | 369 | 960 | { | 370 | 960 | new (newBuffer + i) T(); | 371 | 960 | } | 372 | 34 | } | 373 | 34 | _deallocateBuffer(); | 374 | 34 | } | 375 | 130 | m_buffer = newBuffer; | 376 | 130 | m_capacity = size; | 377 | 130 | } | 378 | 130 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1 | { | 357 | 1 | T* newBuffer = _allocate(size); | 358 | 1 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 1 | m_buffer = newBuffer; | 376 | 1 | m_capacity = size; | 377 | 1 | } | 378 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 417 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 417 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 417 | { | 357 | 417 | T* newBuffer = _allocate(size); | 358 | 417 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 417 | m_buffer = newBuffer; | 376 | 417 | m_capacity = size; | 377 | 417 | } | 378 | 417 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 189 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 189 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 189 | { | 357 | 189 | T* newBuffer = _allocate(size); | 358 | 189 | if (m_capacity) | 359 | 162 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 162 | { | 364 | 27.3k | for (Index i = 0; i < m_count; i++) | 365 | 27.2k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 27.3k | for (Index i = m_count; i < size; i++) | 369 | 27.2k | { | 370 | 27.2k | new (newBuffer + i) T(); | 371 | 27.2k | } | 372 | 162 | } | 373 | 162 | _deallocateBuffer(); | 374 | 162 | } | 375 | 189 | m_buffer = newBuffer; | 376 | 189 | m_capacity = size; | 377 | 189 | } | 378 | 189 | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 54 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 54 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 54 | { | 357 | 54 | T* newBuffer = _allocate(size); | 358 | 54 | if (m_capacity) | 359 | 27 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 27 | { | 364 | 459 | for (Index i = 0; i < m_count; i++) | 365 | 432 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 459 | for (Index i = m_count; i < size; i++) | 369 | 432 | { | 370 | 432 | new (newBuffer + i) T(); | 371 | 432 | } | 372 | 27 | } | 373 | 27 | _deallocateBuffer(); | 374 | 27 | } | 375 | 54 | m_buffer = newBuffer; | 376 | 54 | m_capacity = size; | 377 | 54 | } | 378 | 54 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 63 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 63 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 63 | { | 357 | 63 | T* newBuffer = _allocate(size); | 358 | 63 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 63 | m_buffer = newBuffer; | 376 | 63 | m_capacity = size; | 377 | 63 | } | 378 | 63 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2 | { | 357 | 2 | T* newBuffer = _allocate(size); | 358 | 2 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2 | m_buffer = newBuffer; | 376 | 2 | m_capacity = size; | 377 | 2 | } | 378 | 2 | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.18k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.18k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.18k | { | 357 | 1.18k | T* newBuffer = _allocate(size); | 358 | 1.18k | if (m_capacity) | 359 | 564 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 564 | { | 364 | 9.81k | for (Index i = 0; i < m_count; i++) | 365 | 9.24k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 9.81k | for (Index i = m_count; i < size; i++) | 369 | 9.24k | { | 370 | 9.24k | new (newBuffer + i) T(); | 371 | 9.24k | } | 372 | 564 | } | 373 | 564 | _deallocateBuffer(); | 374 | 564 | } | 375 | 1.18k | m_buffer = newBuffer; | 376 | 1.18k | m_capacity = size; | 377 | 1.18k | } | 378 | 1.18k | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 273 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 273 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 273 | { | 357 | 273 | T* newBuffer = _allocate(size); | 358 | 273 | if (m_capacity) | 359 | 38 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 38 | { | 364 | 774 | for (Index i = 0; i < m_count; i++) | 365 | 736 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 774 | for (Index i = m_count; i < size; i++) | 369 | 736 | { | 370 | 736 | new (newBuffer + i) T(); | 371 | 736 | } | 372 | 38 | } | 373 | 38 | _deallocateBuffer(); | 374 | 38 | } | 375 | 273 | m_buffer = newBuffer; | 376 | 273 | m_capacity = size; | 377 | 273 | } | 378 | 273 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.03k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.03k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.03k | { | 357 | 2.03k | T* newBuffer = _allocate(size); | 358 | 2.03k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2.03k | m_buffer = newBuffer; | 376 | 2.03k | m_capacity = size; | 377 | 2.03k | } | 378 | 2.03k | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 1.49k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 1.49k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 1.49k | { | 357 | 1.49k | T* newBuffer = _allocate(size); | 358 | 1.49k | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 51 | for (Index i = 0; i < m_count; i++) | 365 | 48 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 51 | for (Index i = m_count; i < size; i++) | 369 | 48 | { | 370 | 48 | new (newBuffer + i) T(); | 371 | 48 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 1.49k | m_buffer = newBuffer; | 376 | 1.49k | m_capacity = size; | 377 | 1.49k | } | 378 | 1.49k | } |
_ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 9 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 9 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 9 | { | 357 | 9 | T* newBuffer = _allocate(size); | 358 | 9 | if (m_capacity) | 359 | 7 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 7 | { | 364 | 1.03k | for (Index i = 0; i < m_count; i++) | 365 | 1.02k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 1.03k | for (Index i = m_count; i < size; i++) | 369 | 1.02k | { | 370 | 1.02k | new (newBuffer + i) T(); | 371 | 1.02k | } | 372 | 7 | } | 373 | 7 | _deallocateBuffer(); | 374 | 7 | } | 375 | 9 | m_buffer = newBuffer; | 376 | 9 | m_capacity = size; | 377 | 9 | } | 378 | 9 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 27 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 27 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 26 | { | 357 | 26 | T* newBuffer = _allocate(size); | 358 | 26 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 26 | m_buffer = newBuffer; | 376 | 26 | m_capacity = size; | 377 | 26 | } | 378 | 27 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E7reserveEl Line | Count | Source | 351 | 28 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 28 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 28 | { | 357 | 28 | T* newBuffer = _allocate(size); | 358 | 28 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 28 | m_buffer = newBuffer; | 376 | 28 | m_capacity = size; | 377 | 28 | } | 378 | 28 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 28 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 28 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 28 | { | 357 | 28 | T* newBuffer = _allocate(size); | 358 | 28 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 28 | m_buffer = newBuffer; | 376 | 28 | m_capacity = size; | 377 | 28 | } | 378 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 20 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 20 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 20 | { | 357 | 20 | T* newBuffer = _allocate(size); | 358 | 20 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 20 | m_buffer = newBuffer; | 376 | 20 | m_capacity = size; | 377 | 20 | } | 378 | 20 | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 21 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 21 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 21 | { | 357 | 21 | T* newBuffer = _allocate(size); | 358 | 21 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 21 | m_buffer = newBuffer; | 376 | 21 | m_capacity = size; | 377 | 21 | } | 378 | 21 | } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 158 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 158 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 158 | { | 357 | 158 | T* newBuffer = _allocate(size); | 358 | 158 | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 158 | m_buffer = newBuffer; | 376 | 158 | m_capacity = size; | 377 | 158 | } | 378 | 158 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 37.9k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 37.9k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 18.0k | { | 357 | 18.0k | T* newBuffer = _allocate(size); | 358 | 18.0k | if (m_capacity) | 359 | 3 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 3 | { | 364 | 51 | for (Index i = 0; i < m_count; i++) | 365 | 48 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 51 | for (Index i = m_count; i < size; i++) | 369 | 48 | { | 370 | 48 | new (newBuffer + i) T(); | 371 | 48 | } | 372 | 3 | } | 373 | 3 | _deallocateBuffer(); | 374 | 3 | } | 375 | 18.0k | m_buffer = newBuffer; | 376 | 18.0k | m_capacity = size; | 377 | 18.0k | } | 378 | 37.9k | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 9.70k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 9.70k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 8.13k | { | 357 | 8.13k | T* newBuffer = _allocate(size); | 358 | 8.13k | if (m_capacity) | 359 | 70 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 70 | { | 364 | 14.8k | for (Index i = 0; i < m_count; i++) | 365 | 14.7k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 14.8k | for (Index i = m_count; i < size; i++) | 369 | 14.7k | { | 370 | 14.7k | new (newBuffer + i) T(); | 371 | 14.7k | } | 372 | 70 | } | 373 | 70 | _deallocateBuffer(); | 374 | 70 | } | 375 | 8.13k | m_buffer = newBuffer; | 376 | 8.13k | m_capacity = size; | 377 | 8.13k | } | 378 | 9.70k | } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 2.37k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 2.37k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 2.37k | { | 357 | 2.37k | T* newBuffer = _allocate(size); | 358 | 2.37k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 2.37k | m_buffer = newBuffer; | 376 | 2.37k | m_capacity = size; | 377 | 2.37k | } | 378 | 2.37k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 283 | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 283 | if (UIndex(size) > UIndex(m_capacity)) | 356 | 283 | { | 357 | 283 | T* newBuffer = _allocate(size); | 358 | 283 | if (m_capacity) | 359 | 200 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 200 | { | 364 | 57.0k | for (Index i = 0; i < m_count; i++) | 365 | 56.8k | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 57.0k | for (Index i = m_count; i < size; i++) | 369 | 56.8k | { | 370 | 56.8k | new (newBuffer + i) T(); | 371 | 56.8k | } | 372 | 200 | } | 373 | 200 | _deallocateBuffer(); | 374 | 200 | } | 375 | 283 | m_buffer = newBuffer; | 376 | 283 | m_capacity = size; | 377 | 283 | } | 378 | 283 | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.06k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.06k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.06k | { | 357 | 3.06k | T* newBuffer = _allocate(size); | 358 | 3.06k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3.06k | m_buffer = newBuffer; | 376 | 3.06k | m_capacity = size; | 377 | 3.06k | } | 378 | 3.06k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE7reserveEl Unexecuted instantiation: _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE7reserveEl _ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE7reserveEl Line | Count | Source | 351 | 3.03k | { | 352 | | // The cast for this comparison is needed, otherwise some compilers erroneously detect | 353 | | // the possiblity of a zero sized allocation (possible if m_capacity is assumed to be | 354 | | // negative). | 355 | 3.03k | if (UIndex(size) > UIndex(m_capacity)) | 356 | 3.03k | { | 357 | 3.03k | T* newBuffer = _allocate(size); | 358 | 3.03k | if (m_capacity) | 359 | 0 | { | 360 | | /*if (std::has_trivial_copy_assign<T>::value && | 361 | | std::has_trivial_destructor<T>::value) memcpy(newBuffer, buffer, _count * | 362 | | sizeof(T)); else*/ | 363 | 0 | { | 364 | 0 | for (Index i = 0; i < m_count; i++) | 365 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); | 366 | | | 367 | | // Default-initialize the remaining elements | 368 | 0 | for (Index i = m_count; i < size; i++) | 369 | 0 | { | 370 | 0 | new (newBuffer + i) T(); | 371 | 0 | } | 372 | 0 | } | 373 | 0 | _deallocateBuffer(); | 374 | 0 | } | 375 | 3.03k | m_buffer = newBuffer; | 376 | 3.03k | m_capacity = size; | 377 | 3.03k | } | 378 | 3.03k | } |
|
379 | | |
380 | | void growToCount(Index count) |
381 | 0 | { |
382 | 0 | Index newBufferCount = Index(1) << Math::Log2Ceil((unsigned int)count); |
383 | 0 | if (m_capacity < newBufferCount) |
384 | 0 | { |
385 | 0 | reserve(newBufferCount); |
386 | 0 | } |
387 | 0 | m_count = count; |
388 | 0 | } Unexecuted instantiation: _ZN5Slang4ListIcNS_17StandardAllocatorEE11growToCountEl Unexecuted instantiation: _ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE11growToCountEl Unexecuted instantiation: _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE11growToCountEl Unexecuted instantiation: _ZN5Slang4ListIlNS_17StandardAllocatorEE11growToCountEl |
389 | | |
390 | | void setCount(Index count) |
391 | 7.11M | { |
392 | 7.11M | reserve(count); |
393 | 7.11M | m_count = count; |
394 | 7.11M | } _ZN5Slang4ListImNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 3.93M | { | 392 | 3.93M | reserve(count); | 393 | 3.93M | m_count = count; | 394 | 3.93M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 3.03M | { | 392 | 3.03M | reserve(count); | 393 | 3.03M | m_count = count; | 394 | 3.03M | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_E8setCountEl Line | Count | Source | 391 | 949 | { | 392 | 949 | reserve(count); | 393 | 949 | m_count = count; | 394 | 949 | } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 949 | { | 392 | 949 | reserve(count); | 393 | 949 | m_count = count; | 394 | 949 | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 949 | { | 392 | 949 | reserve(count); | 393 | 949 | m_count = count; | 394 | 949 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 10.2k | { | 392 | 10.2k | reserve(count); | 393 | 10.2k | m_count = count; | 394 | 10.2k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 13.0k | { | 392 | 13.0k | reserve(count); | 393 | 13.0k | m_count = count; | 394 | 13.0k | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 83 | { | 392 | 83 | reserve(count); | 393 | 83 | m_count = count; | 394 | 83 | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 16.4k | { | 392 | 16.4k | reserve(count); | 393 | 16.4k | m_count = count; | 394 | 16.4k | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 28 | { | 392 | 28 | reserve(count); | 393 | 28 | m_count = count; | 394 | 28 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 24.2k | { | 392 | 24.2k | reserve(count); | 393 | 24.2k | m_count = count; | 394 | 24.2k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 5 | { | 392 | 5 | reserve(count); | 393 | 5 | m_count = count; | 394 | 5 | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 16.2k | { | 392 | 16.2k | reserve(count); | 393 | 16.2k | m_count = count; | 394 | 16.2k | } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 3 | { | 392 | 3 | reserve(count); | 393 | 3 | m_count = count; | 394 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 2 | { | 392 | 2 | reserve(count); | 393 | 2 | m_count = count; | 394 | 2 | } |
_ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 1.44k | { | 392 | 1.44k | reserve(count); | 393 | 1.44k | m_count = count; | 394 | 1.44k | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 9.53k | { | 392 | 9.53k | reserve(count); | 393 | 9.53k | m_count = count; | 394 | 9.53k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: _ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListIPKcNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 1 | { | 392 | 1 | reserve(count); | 393 | 1 | m_count = count; | 394 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 96 | { | 392 | 96 | reserve(count); | 393 | 96 | m_count = count; | 394 | 96 | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 5.24k | { | 392 | 5.24k | reserve(count); | 393 | 5.24k | m_count = count; | 394 | 5.24k | } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 69 | { | 392 | 69 | reserve(count); | 393 | 69 | m_count = count; | 394 | 69 | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 4.00k | { | 392 | 4.00k | reserve(count); | 393 | 4.00k | m_count = count; | 394 | 4.00k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 48 | { | 392 | 48 | reserve(count); | 393 | 48 | m_count = count; | 394 | 48 | } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 48 | { | 392 | 48 | reserve(count); | 393 | 48 | m_count = count; | 394 | 48 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 6.12k | { | 392 | 6.12k | reserve(count); | 393 | 6.12k | m_count = count; | 394 | 6.12k | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 54 | { | 392 | 54 | reserve(count); | 393 | 54 | m_count = count; | 394 | 54 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 552 | { | 392 | 552 | reserve(count); | 393 | 552 | m_count = count; | 394 | 552 | } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 1 | { | 392 | 1 | reserve(count); | 393 | 1 | m_count = count; | 394 | 1 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 27 | { | 392 | 27 | reserve(count); | 393 | 27 | m_count = count; | 394 | 27 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E8setCountEl Line | Count | Source | 391 | 28 | { | 392 | 28 | reserve(count); | 393 | 28 | m_count = count; | 394 | 28 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 28 | { | 392 | 28 | reserve(count); | 393 | 28 | m_count = count; | 394 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE8setCountEl Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE8setCountEl _ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 9.17k | { | 392 | 9.17k | reserve(count); | 393 | 9.17k | m_count = count; | 394 | 9.17k | } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE8setCountEl Line | Count | Source | 391 | 19.8k | { | 392 | 19.8k | reserve(count); | 393 | 19.8k | m_count = count; | 394 | 19.8k | } |
|
395 | | |
396 | 0 | void unsafeShrinkToCount(Index count) { m_count = count; } |
397 | | |
398 | | void compress() |
399 | 0 | { |
400 | 0 | if (m_capacity > m_count && m_count > 0) |
401 | 0 | { |
402 | 0 | T* newBuffer = _allocate(m_count); |
403 | 0 | for (Index i = 0; i < m_count; i++) |
404 | 0 | newBuffer[i] = static_cast<T&&>(m_buffer[i]); |
405 | |
|
406 | 0 | _deallocateBuffer(); |
407 | 0 | m_buffer = newBuffer; |
408 | 0 | m_capacity = m_count; |
409 | 0 | } |
410 | 0 | } |
411 | | |
412 | | SLANG_FORCE_INLINE const T& operator[](Index idx) const |
413 | 273M | { |
414 | 273M | SLANG_ASSERT(idx >= 0 && idx < m_count); |
415 | 273M | return m_buffer[idx]; |
416 | 273M | } _ZNK5Slang4ListImNS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 50.9M | { | 414 | 50.9M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 50.9M | return m_buffer[idx]; | 416 | 50.9M | } |
_ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 124k | { | 414 | 124k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 124k | return m_buffer[idx]; | 416 | 124k | } |
_ZNK5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 18 | { | 414 | 18 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 18 | return m_buffer[idx]; | 416 | 18 | } |
_ZNK5Slang4ListIlNS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 298 | { | 414 | 298 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 298 | return m_buffer[idx]; | 416 | 298 | } |
_ZNK5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 9.35k | { | 414 | 9.35k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 9.35k | return m_buffer[idx]; | 416 | 9.35k | } |
_ZNK5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 757 | { | 414 | 757 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 757 | return m_buffer[idx]; | 416 | 757 | } |
_ZNK5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 60 | { | 414 | 60 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 60 | return m_buffer[idx]; | 416 | 60 | } |
_ZNK5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 214M | { | 414 | 214M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 214M | return m_buffer[idx]; | 416 | 214M | } |
_ZNK5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 5.19k | { | 414 | 5.19k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 5.19k | return m_buffer[idx]; | 416 | 5.19k | } |
Unexecuted instantiation: _ZNK5Slang4ListIhNS_17StandardAllocatorEEixEl _ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 69.2k | { | 414 | 69.2k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 69.2k | return m_buffer[idx]; | 416 | 69.2k | } |
_ZNK5Slang4ListINS_5TokenENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 4.56k | { | 414 | 4.56k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 4.56k | return m_buffer[idx]; | 416 | 4.56k | } |
_ZNK5Slang4ListIjNS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 224k | { | 414 | 224k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 224k | return m_buffer[idx]; | 416 | 224k | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_3ValENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_4StmtENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_4NameENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_7TypeExpENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 3 | { | 414 | 3 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 3 | return m_buffer[idx]; | 416 | 3 | } |
_ZNK5Slang4ListINS_8QualTypeENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 210k | { | 414 | 210k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 210k | return m_buffer[idx]; | 416 | 210k | } |
_ZNK5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 2 | { | 414 | 2 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 2 | return m_buffer[idx]; | 416 | 2 | } |
_ZNK5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 1 | { | 414 | 1 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 1 | return m_buffer[idx]; | 416 | 1 | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 3.35k | { | 414 | 3.35k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 3.35k | return m_buffer[idx]; | 416 | 3.35k | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListI14SpvCapability_NS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 2 | { | 414 | 2 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 2 | return m_buffer[idx]; | 416 | 2 | } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZNK5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 60 | { | 414 | 60 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 60 | return m_buffer[idx]; | 416 | 60 | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEEixEl _ZNK5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 24 | { | 414 | 24 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 24 | return m_buffer[idx]; | 416 | 24 | } |
_ZNK5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 32 | { | 414 | 32 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 32 | return m_buffer[idx]; | 416 | 32 | } |
_ZNK5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 729 | { | 414 | 729 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 729 | return m_buffer[idx]; | 416 | 729 | } |
_ZNK5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 9 | { | 414 | 9 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 9 | return m_buffer[idx]; | 416 | 9 | } |
_ZNK5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 27 | { | 414 | 27 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 27 | return m_buffer[idx]; | 416 | 27 | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZNK5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_9SourceLocENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 7.07M | { | 414 | 7.07M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 7.07M | return m_buffer[idx]; | 416 | 7.07M | } |
_ZNK5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 71.1k | { | 414 | 71.1k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 71.1k | return m_buffer[idx]; | 416 | 71.1k | } |
_ZNK5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 5 | { | 414 | 5 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 5 | return m_buffer[idx]; | 416 | 5 | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEEixEl _ZNK5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 412 | { | 414 | 412 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 412 | return m_buffer[idx]; | 416 | 412 | } |
_ZNK5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 4 | { | 414 | 4 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 4 | return m_buffer[idx]; | 416 | 4 | } |
_ZNK5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 93 | { | 414 | 93 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 93 | return m_buffer[idx]; | 416 | 93 | } |
_ZNK5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 472 | { | 414 | 472 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 472 | return m_buffer[idx]; | 416 | 472 | } |
_ZNK5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 6 | { | 414 | 6 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 6 | return m_buffer[idx]; | 416 | 6 | } |
_ZNK5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 74.1k | { | 414 | 74.1k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 74.1k | return m_buffer[idx]; | 416 | 74.1k | } |
Unexecuted instantiation: _ZNK5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEEixEl _ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 100k | { | 414 | 100k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 100k | return m_buffer[idx]; | 416 | 100k | } |
_ZNK5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEEixEl Line | Count | Source | 413 | 56 | { | 414 | 56 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 415 | 56 | return m_buffer[idx]; | 416 | 56 | } |
|
417 | | |
418 | | SLANG_FORCE_INLINE T& operator[](Index idx) |
419 | 108M | { |
420 | 108M | SLANG_ASSERT(idx >= 0 && idx < m_count); |
421 | 108M | return m_buffer[idx]; |
422 | 108M | } _ZN5Slang4ListImNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 9.42M | { | 420 | 9.42M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 9.42M | return m_buffer[idx]; | 422 | 9.42M | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 489 | { | 420 | 489 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 489 | return m_buffer[idx]; | 422 | 489 | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 48.8k | { | 420 | 48.8k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 48.8k | return m_buffer[idx]; | 422 | 48.8k | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_EixEl Line | Count | Source | 419 | 111k | { | 420 | 111k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 111k | return m_buffer[idx]; | 422 | 111k | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3.63M | { | 420 | 3.63M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3.63M | return m_buffer[idx]; | 422 | 3.63M | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 125k | { | 420 | 125k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 125k | return m_buffer[idx]; | 422 | 125k | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 11.8M | { | 420 | 11.8M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 11.8M | return m_buffer[idx]; | 422 | 11.8M | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.53M | { | 420 | 1.53M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.53M | return m_buffer[idx]; | 422 | 1.53M | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 987 | { | 420 | 987 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 987 | return m_buffer[idx]; | 422 | 987 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.71k | { | 420 | 1.71k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.71k | return m_buffer[idx]; | 422 | 1.71k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.52k | { | 420 | 1.52k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.52k | return m_buffer[idx]; | 422 | 1.52k | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 9 | { | 420 | 9 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 9 | return m_buffer[idx]; | 422 | 9 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 5.16k | { | 420 | 5.16k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 5.16k | return m_buffer[idx]; | 422 | 5.16k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEEixEl _ZN5Slang4ListIhNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3.81M | { | 420 | 3.81M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3.81M | return m_buffer[idx]; | 422 | 3.81M | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 771k | { | 420 | 771k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 771k | return m_buffer[idx]; | 422 | 771k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListIbNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 8 | { | 420 | 8 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 8 | return m_buffer[idx]; | 422 | 8 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1 | { | 420 | 1 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1 | return m_buffer[idx]; | 422 | 1 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 304 | { | 420 | 304 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 304 | return m_buffer[idx]; | 422 | 304 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 40 | { | 420 | 40 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 40 | return m_buffer[idx]; | 422 | 40 | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.28M | { | 420 | 1.28M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.28M | return m_buffer[idx]; | 422 | 1.28M | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.06M | { | 420 | 1.06M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.06M | return m_buffer[idx]; | 422 | 1.06M | } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 5 | { | 420 | 5 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 5 | return m_buffer[idx]; | 422 | 5 | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 4 | { | 420 | 4 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 4 | return m_buffer[idx]; | 422 | 4 | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 99 | { | 420 | 99 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 99 | return m_buffer[idx]; | 422 | 99 | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 32.4k | { | 420 | 32.4k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 32.4k | return m_buffer[idx]; | 422 | 32.4k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 21 | { | 420 | 21 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 21 | return m_buffer[idx]; | 422 | 21 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 691 | { | 420 | 691 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 691 | return m_buffer[idx]; | 422 | 691 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 10 | { | 420 | 10 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 10 | return m_buffer[idx]; | 422 | 10 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 910k | { | 420 | 910k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 910k | return m_buffer[idx]; | 422 | 910k | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 362 | { | 420 | 362 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 362 | return m_buffer[idx]; | 422 | 362 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 49 | { | 420 | 49 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 49 | return m_buffer[idx]; | 422 | 49 | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 110 | { | 420 | 110 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 110 | return m_buffer[idx]; | 422 | 110 | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 34.5M | { | 420 | 34.5M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 34.5M | return m_buffer[idx]; | 422 | 34.5M | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 30.9k | { | 420 | 30.9k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 30.9k | return m_buffer[idx]; | 422 | 30.9k | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 53.0k | { | 420 | 53.0k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 53.0k | return m_buffer[idx]; | 422 | 53.0k | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 106k | { | 420 | 106k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 106k | return m_buffer[idx]; | 422 | 106k | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 106k | { | 420 | 106k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 106k | return m_buffer[idx]; | 422 | 106k | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 37.5k | { | 420 | 37.5k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 37.5k | return m_buffer[idx]; | 422 | 37.5k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 4.31k | { | 420 | 4.31k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 4.31k | return m_buffer[idx]; | 422 | 4.31k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEEixEl slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 170 | { | 420 | 170 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 170 | return m_buffer[idx]; | 422 | 170 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3 | { | 420 | 3 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3 | return m_buffer[idx]; | 422 | 3 | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 76.2k | { | 420 | 76.2k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 76.2k | return m_buffer[idx]; | 422 | 76.2k | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 15 | { | 420 | 15 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 15 | return m_buffer[idx]; | 422 | 15 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2 | { | 420 | 2 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2 | return m_buffer[idx]; | 422 | 2 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2.96M | { | 420 | 2.96M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2.96M | return m_buffer[idx]; | 422 | 2.96M | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.42k | { | 420 | 1.42k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.42k | return m_buffer[idx]; | 422 | 1.42k | } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 726 | { | 420 | 726 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 726 | return m_buffer[idx]; | 422 | 726 | } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 5 | { | 420 | 5 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 5 | return m_buffer[idx]; | 422 | 5 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 43 | { | 420 | 43 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 43 | return m_buffer[idx]; | 422 | 43 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2.47M | { | 420 | 2.47M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2.47M | return m_buffer[idx]; | 422 | 2.47M | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 360 | { | 420 | 360 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 360 | return m_buffer[idx]; | 422 | 360 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_EixEl Line | Count | Source | 419 | 167 | { | 420 | 167 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 167 | return m_buffer[idx]; | 422 | 167 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 362 | { | 420 | 362 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 362 | return m_buffer[idx]; | 422 | 362 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.40k | { | 420 | 1.40k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.40k | return m_buffer[idx]; | 422 | 1.40k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.33k | { | 420 | 1.33k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.33k | return m_buffer[idx]; | 422 | 1.33k | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 208k | { | 420 | 208k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 208k | return m_buffer[idx]; | 422 | 208k | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 7.24M | { | 420 | 7.24M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 7.24M | return m_buffer[idx]; | 422 | 7.24M | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2.03M | { | 420 | 2.03M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2.03M | return m_buffer[idx]; | 422 | 2.03M | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 37.9k | { | 420 | 37.9k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 37.9k | return m_buffer[idx]; | 422 | 37.9k | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 126k | { | 420 | 126k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 126k | return m_buffer[idx]; | 422 | 126k | } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 135 | { | 420 | 135 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 135 | return m_buffer[idx]; | 422 | 135 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 141 | { | 420 | 141 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 141 | return m_buffer[idx]; | 422 | 141 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 49 | { | 420 | 49 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 49 | return m_buffer[idx]; | 422 | 49 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 6 | { | 420 | 6 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 6 | return m_buffer[idx]; | 422 | 6 | } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 878 | { | 420 | 878 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 878 | return m_buffer[idx]; | 422 | 878 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEEixEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEEixEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 685 | { | 420 | 685 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 685 | return m_buffer[idx]; | 422 | 685 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 356 | { | 420 | 356 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 356 | return m_buffer[idx]; | 422 | 356 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 18 | { | 420 | 18 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 18 | return m_buffer[idx]; | 422 | 18 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 9 | { | 420 | 9 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 9 | return m_buffer[idx]; | 422 | 9 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 466k | { | 420 | 466k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 466k | return m_buffer[idx]; | 422 | 466k | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 389k | { | 420 | 389k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 389k | return m_buffer[idx]; | 422 | 389k | } |
_ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 5 | { | 420 | 5 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 5 | return m_buffer[idx]; | 422 | 5 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEEixEl _ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 60 | { | 420 | 60 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 60 | return m_buffer[idx]; | 422 | 60 | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 19.9k | { | 420 | 19.9k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 19.9k | return m_buffer[idx]; | 422 | 19.9k | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 167 | { | 420 | 167 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 167 | return m_buffer[idx]; | 422 | 167 | } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 102k | { | 420 | 102k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 102k | return m_buffer[idx]; | 422 | 102k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 185 | { | 420 | 185 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 185 | return m_buffer[idx]; | 422 | 185 | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 98 | { | 420 | 98 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 98 | return m_buffer[idx]; | 422 | 98 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3 | { | 420 | 3 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3 | return m_buffer[idx]; | 422 | 3 | } |
_ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 615 | { | 420 | 615 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 615 | return m_buffer[idx]; | 422 | 615 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 4 | { | 420 | 4 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 4 | return m_buffer[idx]; | 422 | 4 | } |
_ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3 | { | 420 | 3 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3 | return m_buffer[idx]; | 422 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 429 | { | 420 | 429 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 429 | return m_buffer[idx]; | 422 | 429 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 645 | { | 420 | 645 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 645 | return m_buffer[idx]; | 422 | 645 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 141 | { | 420 | 141 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 141 | return m_buffer[idx]; | 422 | 141 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2.42k | { | 420 | 2.42k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2.42k | return m_buffer[idx]; | 422 | 2.42k | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 11.1k | { | 420 | 11.1k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 11.1k | return m_buffer[idx]; | 422 | 11.1k | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 903 | { | 420 | 903 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 903 | return m_buffer[idx]; | 422 | 903 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.60k | { | 420 | 1.60k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.60k | return m_buffer[idx]; | 422 | 1.60k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 34 | { | 420 | 34 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 34 | return m_buffer[idx]; | 422 | 34 | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 372 | { | 420 | 372 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 372 | return m_buffer[idx]; | 422 | 372 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3.03k | { | 420 | 3.03k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3.03k | return m_buffer[idx]; | 422 | 3.03k | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 20 | { | 420 | 20 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 20 | return m_buffer[idx]; | 422 | 20 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 340 | { | 420 | 340 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 340 | return m_buffer[idx]; | 422 | 340 | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 945 | { | 420 | 945 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 945 | return m_buffer[idx]; | 422 | 945 | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 144 | { | 420 | 144 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 144 | return m_buffer[idx]; | 422 | 144 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 548 | { | 420 | 548 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 548 | return m_buffer[idx]; | 422 | 548 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 72 | { | 420 | 72 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 72 | return m_buffer[idx]; | 422 | 72 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 58 | { | 420 | 58 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 58 | return m_buffer[idx]; | 422 | 58 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPKcNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3 | { | 420 | 3 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3 | return m_buffer[idx]; | 422 | 3 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEEixEl _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1 | { | 420 | 1 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1 | return m_buffer[idx]; | 422 | 1 | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 106 | { | 420 | 106 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 106 | return m_buffer[idx]; | 422 | 106 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 7.07M | { | 420 | 7.07M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 7.07M | return m_buffer[idx]; | 422 | 7.07M | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 11.1M | { | 420 | 11.1M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 11.1M | return m_buffer[idx]; | 422 | 11.1M | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.78M | { | 420 | 1.78M | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.78M | return m_buffer[idx]; | 422 | 1.78M | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 883k | { | 420 | 883k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 883k | return m_buffer[idx]; | 422 | 883k | } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 888k | { | 420 | 888k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 888k | return m_buffer[idx]; | 422 | 888k | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 884k | { | 420 | 884k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 884k | return m_buffer[idx]; | 422 | 884k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 2 | { | 420 | 2 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 2 | return m_buffer[idx]; | 422 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_EixEl Line | Count | Source | 419 | 390 | { | 420 | 390 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 390 | return m_buffer[idx]; | 422 | 390 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 20.9k | { | 420 | 20.9k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 20.9k | return m_buffer[idx]; | 422 | 20.9k | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 1.40k | { | 420 | 1.40k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 1.40k | return m_buffer[idx]; | 422 | 1.40k | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 896 | { | 420 | 896 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 896 | return m_buffer[idx]; | 422 | 896 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 150 | { | 420 | 150 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 150 | return m_buffer[idx]; | 422 | 150 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 849 | { | 420 | 849 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 849 | return m_buffer[idx]; | 422 | 849 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 738 | { | 420 | 738 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 738 | return m_buffer[idx]; | 422 | 738 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_EixEl Line | Count | Source | 419 | 106k | { | 420 | 106k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 106k | return m_buffer[idx]; | 422 | 106k | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 27 | { | 420 | 27 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 27 | return m_buffer[idx]; | 422 | 27 | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 137 | { | 420 | 137 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 137 | return m_buffer[idx]; | 422 | 137 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEEixEl Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEEixEl _ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 39.2k | { | 420 | 39.2k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 39.2k | return m_buffer[idx]; | 422 | 39.2k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 41.3k | { | 420 | 41.3k | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 41.3k | return m_buffer[idx]; | 422 | 41.3k | } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEEixEl Line | Count | Source | 419 | 3 | { | 420 | 3 | SLANG_ASSERT(idx >= 0 && idx < m_count); | 421 | 3 | return m_buffer[idx]; | 422 | 3 | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEEixEl |
423 | | |
424 | | template<typename Func> |
425 | | Index findFirstIndex(const Func& predicate) const |
426 | 19.3k | { |
427 | 131k | for (Index i = 0; i < m_count; i++) |
428 | 124k | { |
429 | 124k | if (predicate(m_buffer[i])) |
430 | 12.1k | return i; |
431 | 124k | } |
432 | 7.21k | return -1; |
433 | 19.3k | } _ZNK5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE14findFirstIndexIZNKS1_8findNameERKNS_6StringEEUlRKS2_E_EElRKT_ Line | Count | Source | 426 | 6.20k | { | 427 | 37.0k | for (Index i = 0; i < m_count; i++) | 428 | 31.7k | { | 429 | 31.7k | if (predicate(m_buffer[i])) | 430 | 897 | return i; | 431 | 31.7k | } | 432 | 5.30k | return -1; | 433 | 6.20k | } |
_ZNK5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE14findFirstIndexIZNS_17CompilerOptionSet3addEN5slang18CompilerOptionNameERKS3_bEUlRKS1_E_EElRKT_ Line | Count | Source | 426 | 11.2k | { | 427 | 92.9k | for (Index i = 0; i < m_count; i++) | 428 | 92.9k | { | 429 | 92.9k | if (predicate(m_buffer[i])) | 430 | 11.2k | return i; | 431 | 92.9k | } | 432 | 0 | return -1; | 433 | 11.2k | } |
Unexecuted instantiation: slang-ast-print.cpp:_ZNK5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE14findFirstIndexIZNS1_7getPartENS2_4TypeERKNS_18UnownedStringSliceERKS4_E3$_0EElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE14findFirstIndexIZNKS1_10indexOfKeyERKNS_18UnownedStringSliceEEUlRKS2_E_EElRKT_ slang-legalize-types.cpp:_ZNK5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE14findFirstIndexIZNS_16legalizeTypeImplEPS1_PNS_6IRTypeEE3$_0EElRKT_ Line | Count | Source | 426 | 1.85k | { | 427 | 1.88k | for (Index i = 0; i < m_count; i++) | 428 | 27 | { | 429 | 27 | if (predicate(m_buffer[i])) | 430 | 3 | return i; | 431 | 27 | } | 432 | 1.85k | return -1; | 433 | 1.85k | } |
slang-doc-extractor.cpp:_ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE14findFirstIndexIZNS_18DocMarkupExtractor7extractEPKNS6_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERS4_RNS0_INS6_16SearchItemOutputES3_EEE3$_1EElRKT_ Line | Count | Source | 426 | 27 | { | 427 | 28 | for (Index i = 0; i < m_count; i++) | 428 | 1 | { | 429 | 1 | if (predicate(m_buffer[i])) | 430 | 0 | return i; | 431 | 1 | } | 432 | 27 | return -1; | 433 | 27 | } |
slang-downstream-compiler-set.cpp:_ZNK5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE14findFirstIndexIZNS_21DownstreamCompilerSet16hasSharedLibraryEPS2_E3$_0EElRKT_ Line | Count | Source | 426 | 20 | { | 427 | 20 | for (Index i = 0; i < m_count; i++) | 428 | 0 | { | 429 | 0 | if (predicate(m_buffer[i])) | 430 | 0 | return i; | 431 | 0 | } | 432 | 20 | return -1; | 433 | 20 | } |
Unexecuted instantiation: slang-spirv-core-grammar.cpp:_ZNK5Slang4ListINS_7OperandENS_17StandardAllocatorEE14findFirstIndexIZNS_20SPIRVCoreGrammarInfo12loadFromJSONERNS_10SourceViewERNS_14DiagnosticSinkEE3$_0EElRKT_ Unexecuted instantiation: slang-spirv-core-grammar.cpp:_ZNK5Slang4ListINS_7OperandENS_17StandardAllocatorEE14findFirstIndexIZNS_20SPIRVCoreGrammarInfo12loadFromJSONERNS_10SourceViewERNS_14DiagnosticSinkEE3$_1EElRKT_ |
434 | | |
435 | | template<typename T2> |
436 | | Index indexOf(const T2& val) const |
437 | 115k | { |
438 | 341k | for (Index i = 0; i < m_count; i++) |
439 | 234k | { |
440 | 234k | if (m_buffer[i] == val) |
441 | 8.55k | return i; |
442 | 234k | } |
443 | 106k | return -1; |
444 | 115k | } _ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Line | Count | Source | 437 | 17 | { | 438 | 35 | for (Index i = 0; i < m_count; i++) | 439 | 18 | { | 440 | 18 | if (m_buffer[i] == val) | 441 | 0 | return i; | 442 | 18 | } | 443 | 17 | return -1; | 444 | 17 | } |
_ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Line | Count | Source | 437 | 59 | { | 438 | 160 | for (Index i = 0; i < m_count; i++) | 439 | 160 | { | 440 | 160 | if (m_buffer[i] == val) | 441 | 59 | return i; | 442 | 160 | } | 443 | 0 | return -1; | 444 | 59 | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ _ZNK5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E7indexOfIS3_EElRKT_ Line | Count | Source | 437 | 4 | { | 438 | 4 | for (Index i = 0; i < m_count; i++) | 439 | 0 | { | 440 | 0 | if (m_buffer[i] == val) | 441 | 0 | return i; | 442 | 0 | } | 443 | 4 | return -1; | 444 | 4 | } |
_ZNK5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E7indexOfIS3_EElRKT_ Line | Count | Source | 437 | 4 | { | 438 | 4 | for (Index i = 0; i < m_count; i++) | 439 | 0 | { | 440 | 0 | if (m_buffer[i] == val) | 441 | 0 | return i; | 442 | 0 | } | 443 | 4 | return -1; | 444 | 4 | } |
_ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Line | Count | Source | 437 | 368 | { | 438 | 708 | for (Index i = 0; i < m_count; i++) | 439 | 480 | { | 440 | 480 | if (m_buffer[i] == val) | 441 | 140 | return i; | 442 | 480 | } | 443 | 228 | return -1; | 444 | 368 | } |
_ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE7indexOfIS1_EElRKT_ Line | Count | Source | 437 | 23 | { | 438 | 25 | for (Index i = 0; i < m_count; i++) | 439 | 19 | { | 440 | 19 | if (m_buffer[i] == val) | 441 | 17 | return i; | 442 | 19 | } | 443 | 6 | return -1; | 444 | 23 | } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Unexecuted instantiation: _ZNK5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ _ZNK5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Line | Count | Source | 437 | 8.74k | { | 438 | 25.5k | for (Index i = 0; i < m_count; i++) | 439 | 23.4k | { | 440 | 23.4k | if (m_buffer[i] == val) | 441 | 6.61k | return i; | 442 | 23.4k | } | 443 | 2.13k | return -1; | 444 | 8.74k | } |
_ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEE7indexOfIS1_EElRKT_ Line | Count | Source | 437 | 277 | { | 438 | 605 | for (Index i = 0; i < m_count; i++) | 439 | 345 | { | 440 | 345 | if (m_buffer[i] == val) | 441 | 17 | return i; | 442 | 345 | } | 443 | 260 | return -1; | 444 | 277 | } |
Unexecuted instantiation: _ZNK5Slang4ListIlNS_17StandardAllocatorEE7indexOfIlEElRKT_ _ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE7indexOfIS1_EElRKT_ Line | Count | Source | 437 | 105k | { | 438 | 314k | for (Index i = 0; i < m_count; i++) | 439 | 209k | { | 440 | 209k | if (m_buffer[i] == val) | 441 | 1.71k | return i; | 442 | 209k | } | 443 | 104k | return -1; | 444 | 105k | } |
Unexecuted instantiation: _ZNK5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE7indexOfIS3_EElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE7indexOfIA5_cEElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_6StringENS_17StandardAllocatorEE7indexOfINS_19TerminatedCharSliceEEElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ Unexecuted instantiation: _ZNK5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE7indexOfIS2_EElRKT_ |
445 | | |
446 | | template<typename Func> |
447 | | Index findLastIndex(const Func& predicate) const |
448 | | { |
449 | | for (Index i = m_count - 1; i >= 0; i--) |
450 | | { |
451 | | if (predicate(m_buffer[i])) |
452 | | return i; |
453 | | } |
454 | | return -1; |
455 | | } |
456 | | |
457 | | template<typename T2> |
458 | | Index lastIndexOf(const T2& val) const |
459 | | { |
460 | | for (Index i = m_count - 1; i >= 0; i--) |
461 | | { |
462 | | if (m_buffer[i] == val) |
463 | | return i; |
464 | | } |
465 | | return -1; |
466 | | } |
467 | | |
468 | 9.16k | bool contains(const T& val) const { return indexOf(val) != Index(-1); }_ZNK5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E8containsERKS3_ Line | Count | Source | 468 | 4 | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
_ZNK5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E8containsERKS3_ Line | Count | Source | 468 | 4 | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
_ZNK5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE8containsERKS2_ Line | Count | Source | 468 | 368 | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
_ZNK5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE8containsERKS1_ Line | Count | Source | 468 | 23 | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
_ZNK5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE8containsERKS2_ Line | Count | Source | 468 | 17 | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
Unexecuted instantiation: _ZNK5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE8containsERKS2_ _ZNK5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE8containsERKS2_ Line | Count | Source | 468 | 8.74k | bool contains(const T& val) const { return indexOf(val) != Index(-1); } |
|
469 | | |
470 | | void sort() |
471 | 6.58k | { |
472 | 32.4M | sort([](const T& t1, const T& t2) { return t1 < t2; });_ZZN5Slang4ListINS_6StringENS_17StandardAllocatorEE4sortEvENKUlRKS1_S5_E_clES5_S5_ Line | Count | Source | 472 | 53.5k | sort([](const T& t1, const T& t2) { return t1 < t2; }); |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE4sortEvENKUlRKS2_S6_E_clES6_S6_ _ZZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE4sortEvENKUlRKS1_S5_E_clES5_S5_ Line | Count | Source | 472 | 10.5k | sort([](const T& t1, const T& t2) { return t1 < t2; }); |
_ZZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE4sortEvENKUlRKS2_S6_E_clES6_S6_ Line | Count | Source | 472 | 16.0M | sort([](const T& t1, const T& t2) { return t1 < t2; }); |
_ZZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE4sortEvENKUlRKS2_S6_E_clES6_S6_ Line | Count | Source | 472 | 16.3M | sort([](const T& t1, const T& t2) { return t1 < t2; }); |
|
473 | 6.58k | } _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE4sortEv Line | Count | Source | 471 | 1 | { | 472 | 1 | sort([](const T& t1, const T& t2) { return t1 < t2; }); | 473 | 1 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE4sortEv _ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE4sortEv Line | Count | Source | 471 | 1.31k | { | 472 | 1.31k | sort([](const T& t1, const T& t2) { return t1 < t2; }); | 473 | 1.31k | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE4sortEv Line | Count | Source | 471 | 5.19k | { | 472 | 5.19k | sort([](const T& t1, const T& t2) { return t1 < t2; }); | 473 | 5.19k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE4sortEv Line | Count | Source | 471 | 69 | { | 472 | 69 | sort([](const T& t1, const T& t2) { return t1 < t2; }); | 473 | 69 | } |
|
474 | | |
475 | | template<typename Comparer> |
476 | | void sort(Comparer compare) |
477 | 10.9k | { |
478 | | // insertionSort(buffer, 0, _count - 1); |
479 | | // quickSort(buffer, 0, _count - 1, compare); |
480 | 10.9k | std::sort(m_buffer, m_buffer + m_count, compare); |
481 | 10.9k | } _ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE4sortIZNS_23PolynomialIntValBuilder12canonicalizeEPNS_4TypeEEUlS2_S2_E_EEvT_ Line | Count | Source | 477 | 104 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 104 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 104 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE4sortIZNS_23PolynomialIntValBuilder12canonicalizeEPNS_4TypeEEUlS2_S2_E_EEvT_ Line | Count | Source | 477 | 57 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 57 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 57 | } |
Unexecuted instantiation: slang-check-decl.cpp:_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE4sortIZNS_30getCanonicalGenericConstraintsEPNS_10ASTBuilderENS_7DeclRefINS_13ContainerDeclEEEE3$_0EEvT_ slang-check-decl.cpp:_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE4sortIZNS_31getCanonicalGenericConstraints2EPNS_10ASTBuilderENS_7DeclRefINS_13ContainerDeclEEEE3$_0EEvT_ Line | Count | Source | 477 | 3.49k | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 3.49k | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 3.49k | } |
slang-check-overload.cpp:_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE4sortIZNS_16SemanticsVisitor13ResolveInvokeEPNS_10InvokeExprEE3$_0EEvT_ Line | Count | Source | 477 | 442 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 442 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 442 | } |
Unexecuted instantiation: slang-compile-request.cpp:_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE4sortIZNS_L28_calcViewInitiatingHierarchyEPNS_13SourceManagerERNS_10DictionaryIS2_S4_NS_4HashIS2_EESt8equal_toIS2_EEEE3$_0EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE4sortIZNS_17DocMarkdownWriter24writeCallableOverridableEPNS_12DocumentPageERKNS_11MarkupEntryES2_E3$_0EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE4sortIZNS_L15_getDeclsOfTypeINS_7VarDeclEEEvPNS_17DocMarkdownWriterEPNS_12DocumentPageERS4_EUlS2_S2_E_EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE4sortIZNS_L15_getDeclsOfTypeINS_12PropertyDeclEEEvPNS_17DocMarkdownWriterEPNS_12DocumentPageERS4_EUlS2_S2_E_EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE4sortIZNS_L15_getDeclsOfTypeINS_12CallableDeclEEEvPNS_17DocMarkdownWriterEPNS_12DocumentPageERS4_EUlS2_S2_E_EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE4sortIZNS_17DocMarkdownWriter12writeAggTypeEPNS_12DocumentPageERKNS_11MarkupEntryEPNS_15AggTypeDeclBaseEE3$_0EEvT_ Unexecuted instantiation: slang-doc-markdown-writer.cpp:_ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE4sortIZNS_9sortPagesEPS2_E3$_0EEvT_ _ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE4sortIZNS3_4sortEvEUlRKS1_S6_E_EEvT_ Line | Count | Source | 477 | 1 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 1 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 1 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE4sortIZNS1_18emitAggregateValueEPNS_9IRBuilderEPNS_6IRTypeES4_EUlRKS2_SB_E_EEvT_ Line | Count | Source | 477 | 223 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 223 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 223 | } |
Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEE4sortIZNS2_34_orderRangeStartsDeterministicallyEvE3$_0EEvT_ Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE4sortIZNS4_4sortEvEUlRKS2_S7_E_EEvT_ _ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE4sortIZNS3_4sortEvEUlRKS1_S6_E_EEvT_ Line | Count | Source | 477 | 1.31k | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 1.31k | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 1.31k | } |
slang-serialize-ast.cpp:_ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE4sortIZNS_L10_sortByKeyIS2_jEEvRNS0_INS1_IT_T0_EES4_EEEUlRKS3_SE_E_EEvS8_ Line | Count | Source | 477 | 14 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 14 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 14 | } |
slang-serialize-ast.cpp:_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE4sortIZNS_L10_sortByKeyIS2_S4_EEvRNS0_INS1_IT_T0_EES6_EEEUlRKS5_SG_E_EEvSA_ Line | Count | Source | 477 | 3 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 3 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 3 | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE4sortIZNS4_4sortEvEUlRKS2_S7_E_EEvT_ Line | Count | Source | 477 | 5.19k | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 5.19k | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 5.19k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE4sortIZNS4_4sortEvEUlRKS2_S7_E_EEvT_ Line | Count | Source | 477 | 69 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 69 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 69 | } |
Unexecuted instantiation: slang-semantic-version.cpp:_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE4sortIZNS_20MatchSemanticVersion11findAnyBestEPKS1_lRKS5_E3$_0EEvT_ slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E4sortIZNS1_7extractES4_lS6_S8_SD_SG_E3$_0EEvT_ Line | Count | Source | 477 | 28 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 28 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 28 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E4sortIZNS1_7extractES4_lS6_S8_SD_SG_E3$_2EEvT_ Line | Count | Source | 477 | 28 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 28 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 28 | } |
slang-json-value.cpp:_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE4sortIZNS_13JSONContainer8areEqualEPKS1_S7_lE3$_0EEvT_ Line | Count | Source | 477 | 2 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 2 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 2 | } |
slang-json-value.cpp:_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE4sortIZNS_13JSONContainer8areEqualEPKS1_S7_lE3$_1EEvT_ Line | Count | Source | 477 | 2 | { | 478 | | // insertionSort(buffer, 0, _count - 1); | 479 | | // quickSort(buffer, 0, _count - 1, compare); | 480 | 2 | std::sort(m_buffer, m_buffer + m_count, compare); | 481 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE4sortIPFbRKS2_S7_EEEvT_ |
482 | | |
483 | | void stableSort() |
484 | | { |
485 | | stableSort([](const T& t1, const T& t2) { return t1 < t2; }); |
486 | | } |
487 | | |
488 | | template<typename Comparer> |
489 | | void stableSort(Comparer compare) |
490 | | { |
491 | | std::stable_sort(m_buffer, m_buffer + m_count, compare); |
492 | | } |
493 | | |
494 | | template<typename IterateFunc> |
495 | | void forEach(IterateFunc f) const |
496 | | { |
497 | | for (Index i = 0; i < m_count; i++) |
498 | | f(m_buffer[i]); |
499 | | } |
500 | | |
501 | | template<typename Comparer> |
502 | | void quickSort(T* vals, Index startIndex, Index endIndex, Comparer comparer) |
503 | | { |
504 | | static const Index kMinQSortSize = 32; |
505 | | |
506 | | if (startIndex < endIndex) |
507 | | { |
508 | | if (endIndex - startIndex < kMinQSortSize) |
509 | | insertionSort(vals, startIndex, endIndex, comparer); |
510 | | else |
511 | | { |
512 | | Index pivotIndex = (startIndex + endIndex) >> 1; |
513 | | Index pivotNewIndex = partition(vals, startIndex, endIndex, pivotIndex, comparer); |
514 | | quickSort(vals, startIndex, pivotNewIndex - 1, comparer); |
515 | | quickSort(vals, pivotNewIndex + 1, endIndex, comparer); |
516 | | } |
517 | | } |
518 | | } |
519 | | template<typename Comparer> |
520 | | Index partition(T* vals, Index left, Index right, Index pivotIndex, Comparer comparer) |
521 | | { |
522 | | T pivotValue = vals[pivotIndex]; |
523 | | swapElements(vals, right, pivotIndex); |
524 | | Index storeIndex = left; |
525 | | for (Index i = left; i < right; i++) |
526 | | { |
527 | | if (comparer(vals[i], pivotValue)) |
528 | | { |
529 | | swapElements(vals, i, storeIndex); |
530 | | storeIndex++; |
531 | | } |
532 | | } |
533 | | swapElements(vals, storeIndex, right); |
534 | | return storeIndex; |
535 | | } |
536 | | template<typename Comparer> |
537 | | void insertionSort(T* vals, Index startIndex, Index endIndex, Comparer comparer) |
538 | | { |
539 | | for (Index i = startIndex + 1; i <= endIndex; i++) |
540 | | { |
541 | | T insertValue = static_cast<T&&>(vals[i]); |
542 | | Index insertIndex = i - 1; |
543 | | while (insertIndex >= startIndex && comparer(insertValue, vals[insertIndex])) |
544 | | { |
545 | | vals[insertIndex + 1] = static_cast<T&&>(vals[insertIndex]); |
546 | | insertIndex--; |
547 | | } |
548 | | vals[insertIndex + 1] = static_cast<T&&>(insertValue); |
549 | | } |
550 | | } |
551 | | |
552 | | inline static void swapElements(T* vals, Index index1, Index index2) |
553 | 8.90k | { |
554 | 8.90k | if (index1 != index2) |
555 | 8.90k | { |
556 | 8.90k | T tmp = static_cast<T&&>(vals[index1]); |
557 | 8.90k | vals[index1] = static_cast<T&&>(vals[index2]); |
558 | 8.90k | vals[index2] = static_cast<T&&>(tmp); |
559 | 8.90k | } |
560 | 8.90k | } _ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE12swapElementsEPS2_ll Line | Count | Source | 553 | 205 | { | 554 | 205 | if (index1 != index2) | 555 | 205 | { | 556 | 205 | T tmp = static_cast<T&&>(vals[index1]); | 557 | 205 | vals[index1] = static_cast<T&&>(vals[index2]); | 558 | 205 | vals[index2] = static_cast<T&&>(tmp); | 559 | 205 | } | 560 | 205 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE12swapElementsEPS1_ll _ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE12swapElementsEPS2_ll Line | Count | Source | 553 | 250 | { | 554 | 250 | if (index1 != index2) | 555 | 250 | { | 556 | 250 | T tmp = static_cast<T&&>(vals[index1]); | 557 | 250 | vals[index1] = static_cast<T&&>(vals[index2]); | 558 | 250 | vals[index2] = static_cast<T&&>(tmp); | 559 | 250 | } | 560 | 250 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE12swapElementsEPS2_ll Line | Count | Source | 553 | 3.43k | { | 554 | 3.43k | if (index1 != index2) | 555 | 3.43k | { | 556 | 3.43k | T tmp = static_cast<T&&>(vals[index1]); | 557 | 3.43k | vals[index1] = static_cast<T&&>(vals[index2]); | 558 | 3.43k | vals[index2] = static_cast<T&&>(tmp); | 559 | 3.43k | } | 560 | 3.43k | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE12swapElementsEPS2_ll Line | Count | Source | 553 | 5.00k | { | 554 | 5.00k | if (index1 != index2) | 555 | 5.00k | { | 556 | 5.00k | T tmp = static_cast<T&&>(vals[index1]); | 557 | 5.00k | vals[index1] = static_cast<T&&>(vals[index2]); | 558 | 5.00k | vals[index2] = static_cast<T&&>(tmp); | 559 | 5.00k | } | 560 | 5.00k | } |
|
561 | | |
562 | 0 | inline void swapElements(Index index1, Index index2) { swapElements(m_buffer, index1, index2); } |
563 | | |
564 | | template<typename T2, typename Comparer> |
565 | | Index binarySearch(const T2& obj, Comparer comparer) const |
566 | 0 | { |
567 | 0 | Index imin = 0, imax = m_count - 1; |
568 | 0 | while (imax >= imin) |
569 | 0 | { |
570 | 0 | Index imid = imin + ((imax - imin) >> 1); |
571 | 0 | int compareResult = comparer(m_buffer[imid], obj); |
572 | 0 | if (compareResult == 0) |
573 | 0 | return imid; |
574 | 0 | else if (compareResult < 0) |
575 | 0 | imin = imid + 1; |
576 | 0 | else |
577 | 0 | imax = imid - 1; |
578 | 0 | } |
579 | | // TODO: The return value on a failed search should be |
580 | | // the bitwise negation of the index where `obj` should |
581 | | // be inserted to be in the proper sorted location. |
582 | 0 | return -1; |
583 | 0 | } Unexecuted instantiation: _ZNK5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE12binarySearchIS2_ZNKS4_12binarySearchIS2_EElRKT_EUlRS2_RKS2_E_EElS9_T0_ Unexecuted instantiation: slang-language-server-auto-format.cpp:_ZNK5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE12binarySearchIlZNS_12formatSourceENS_18UnownedStringSliceElllRKS3_RKNS_13FormatOptionsEE3$_0EElRKT_T0_ |
584 | | |
585 | | template<typename T2> |
586 | | Index binarySearch(const T2& obj) const |
587 | 0 | { |
588 | 0 | return binarySearch( |
589 | 0 | obj, |
590 | 0 | [](T& curObj, const T2& thatObj) -> int |
591 | 0 | { |
592 | 0 | if (curObj < thatObj) |
593 | 0 | return -1; |
594 | 0 | else if (curObj == thatObj) |
595 | 0 | return 0; |
596 | 0 | else |
597 | 0 | return 1; |
598 | 0 | }); |
599 | 0 | } |
600 | | |
601 | | private: |
602 | | T* m_buffer; ///< A new T[N] allocated buffer. NOTE! All elements up to capacity are in some |
603 | | ///< valid form for T. |
604 | | Index m_capacity; ///< The total capacity of elements |
605 | | Index m_count; ///< The amount of elements |
606 | | |
607 | | void _deallocateBuffer() |
608 | 54.4M | { |
609 | 54.4M | if (m_buffer) |
610 | 25.6M | { |
611 | 25.6M | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); |
612 | 25.6M | m_buffer = nullptr; |
613 | 25.6M | } |
614 | 54.4M | } _ZN5Slang4ListImNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 37.2M | { | 609 | 37.2M | if (m_buffer) | 610 | 17.5M | { | 611 | 17.5M | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 17.5M | m_buffer = nullptr; | 613 | 17.5M | } | 614 | 37.2M | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 40.9k | { | 609 | 40.9k | if (m_buffer) | 610 | 39.4k | { | 611 | 39.4k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 39.4k | m_buffer = nullptr; | 613 | 39.4k | } | 614 | 40.9k | } |
_ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 23 | { | 609 | 23 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 23 | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 67.8k | { | 609 | 67.8k | if (m_buffer) | 610 | 67.1k | { | 611 | 67.1k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 67.1k | m_buffer = nullptr; | 613 | 67.1k | } | 614 | 67.8k | } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6 | { | 609 | 6 | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 6 | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 66 | { | 609 | 66 | if (m_buffer) | 610 | 60 | { | 611 | 60 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 60 | m_buffer = nullptr; | 613 | 60 | } | 614 | 66 | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 28.4k | { | 609 | 28.4k | if (m_buffer) | 610 | 21.5k | { | 611 | 21.5k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 21.5k | m_buffer = nullptr; | 613 | 21.5k | } | 614 | 28.4k | } |
_ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 11.7k | { | 609 | 11.7k | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 11.7k | } |
_ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 11.7k | { | 609 | 11.7k | if (m_buffer) | 610 | 133 | { | 611 | 133 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 133 | m_buffer = nullptr; | 613 | 133 | } | 614 | 11.7k | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.84k | { | 609 | 1.84k | if (m_buffer) | 610 | 1.71k | { | 611 | 1.71k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.71k | m_buffer = nullptr; | 613 | 1.71k | } | 614 | 1.84k | } |
_ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.43k | { | 609 | 3.43k | if (m_buffer) | 610 | 3.00k | { | 611 | 3.00k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3.00k | m_buffer = nullptr; | 613 | 3.00k | } | 614 | 3.43k | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 9.04k | { | 609 | 9.04k | if (m_buffer) | 610 | 8.78k | { | 611 | 8.78k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 8.78k | m_buffer = nullptr; | 613 | 8.78k | } | 614 | 9.04k | } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 42.7k | { | 609 | 42.7k | if (m_buffer) | 610 | 1.18k | { | 611 | 1.18k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.18k | m_buffer = nullptr; | 613 | 1.18k | } | 614 | 42.7k | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.32k | { | 609 | 2.32k | if (m_buffer) | 610 | 1.90k | { | 611 | 1.90k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.90k | m_buffer = nullptr; | 613 | 1.90k | } | 614 | 2.32k | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 234k | { | 609 | 234k | if (m_buffer) | 610 | 24.3k | { | 611 | 24.3k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 24.3k | m_buffer = nullptr; | 613 | 24.3k | } | 614 | 234k | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 50 | { | 609 | 50 | if (m_buffer) | 610 | 19 | { | 611 | 19 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 19 | m_buffer = nullptr; | 613 | 19 | } | 614 | 50 | } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 86 | { | 609 | 86 | if (m_buffer) | 610 | 18 | { | 611 | 18 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 18 | m_buffer = nullptr; | 613 | 18 | } | 614 | 86 | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 51 | { | 609 | 51 | if (m_buffer) | 610 | 51 | { | 611 | 51 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 51 | m_buffer = nullptr; | 613 | 51 | } | 614 | 51 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 186 | { | 609 | 186 | if (m_buffer) | 610 | 186 | { | 611 | 186 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 186 | m_buffer = nullptr; | 613 | 186 | } | 614 | 186 | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 11.3k | { | 609 | 11.3k | if (m_buffer) | 610 | 5.15k | { | 611 | 5.15k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 5.15k | m_buffer = nullptr; | 613 | 5.15k | } | 614 | 11.3k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10.7k | { | 609 | 10.7k | if (m_buffer) | 610 | 806 | { | 611 | 806 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 806 | m_buffer = nullptr; | 613 | 806 | } | 614 | 10.7k | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 471k | { | 609 | 471k | if (m_buffer) | 610 | 471k | { | 611 | 471k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 471k | m_buffer = nullptr; | 613 | 471k | } | 614 | 471k | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 139k | { | 609 | 139k | if (m_buffer) | 610 | 354 | { | 611 | 354 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 354 | m_buffer = nullptr; | 613 | 354 | } | 614 | 139k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 99.3k | { | 609 | 99.3k | if (m_buffer) | 610 | 22.1k | { | 611 | 22.1k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 22.1k | m_buffer = nullptr; | 613 | 22.1k | } | 614 | 99.3k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 123k | { | 609 | 123k | if (m_buffer) | 610 | 58.5k | { | 611 | 58.5k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 58.5k | m_buffer = nullptr; | 613 | 58.5k | } | 614 | 123k | } |
_ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.00M | { | 609 | 1.00M | if (m_buffer) | 610 | 920k | { | 611 | 920k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 920k | m_buffer = nullptr; | 613 | 920k | } | 614 | 1.00M | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 257k | { | 609 | 257k | if (m_buffer) | 610 | 77.8k | { | 611 | 77.8k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 77.8k | m_buffer = nullptr; | 613 | 77.8k | } | 614 | 257k | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 185k | { | 609 | 185k | if (m_buffer) | 610 | 165k | { | 611 | 165k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 165k | m_buffer = nullptr; | 613 | 165k | } | 614 | 185k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 41.9k | { | 609 | 41.9k | if (m_buffer) | 610 | 23.6k | { | 611 | 23.6k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 23.6k | m_buffer = nullptr; | 613 | 23.6k | } | 614 | 41.9k | } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 20 | { | 609 | 20 | if (m_buffer) | 610 | 20 | { | 611 | 20 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 20 | m_buffer = nullptr; | 613 | 20 | } | 614 | 20 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 226 | { | 609 | 226 | if (m_buffer) | 610 | 7 | { | 611 | 7 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7 | m_buffer = nullptr; | 613 | 7 | } | 614 | 226 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 35.2k | { | 609 | 35.2k | if (m_buffer) | 610 | 21.4k | { | 611 | 21.4k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 21.4k | m_buffer = nullptr; | 613 | 21.4k | } | 614 | 35.2k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 13.2k | { | 609 | 13.2k | if (m_buffer) | 610 | 240 | { | 611 | 240 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 240 | m_buffer = nullptr; | 613 | 240 | } | 614 | 13.2k | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 71 | { | 609 | 71 | if (m_buffer) | 610 | 71 | { | 611 | 71 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 71 | m_buffer = nullptr; | 613 | 71 | } | 614 | 71 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.18k | { | 609 | 1.18k | if (m_buffer) | 610 | 1.09k | { | 611 | 1.09k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.09k | m_buffer = nullptr; | 613 | 1.09k | } | 614 | 1.18k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPvNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 963k | { | 609 | 963k | if (m_buffer) | 610 | 779 | { | 611 | 779 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 779 | m_buffer = nullptr; | 613 | 779 | } | 614 | 963k | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_E17_deallocateBufferEv Line | Count | Source | 608 | 941 | { | 609 | 941 | if (m_buffer) | 610 | 941 | { | 611 | 941 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 941 | m_buffer = nullptr; | 613 | 941 | } | 614 | 941 | } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 941 | { | 609 | 941 | if (m_buffer) | 610 | 941 | { | 611 | 941 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 941 | m_buffer = nullptr; | 613 | 941 | } | 614 | 941 | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 941 | { | 609 | 941 | if (m_buffer) | 610 | 941 | { | 611 | 941 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 941 | m_buffer = nullptr; | 613 | 941 | } | 614 | 941 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 8.73M | { | 609 | 8.73M | if (m_buffer) | 610 | 3.54M | { | 611 | 3.54M | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3.54M | m_buffer = nullptr; | 613 | 3.54M | } | 614 | 8.73M | } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.51k | { | 609 | 1.51k | if (m_buffer) | 610 | 1.50k | { | 611 | 1.50k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.50k | m_buffer = nullptr; | 613 | 1.50k | } | 614 | 1.51k | } |
_ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 5.31k | { | 609 | 5.31k | if (m_buffer) | 610 | 5.31k | { | 611 | 5.31k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 5.31k | m_buffer = nullptr; | 613 | 5.31k | } | 614 | 5.31k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 117 | { | 609 | 117 | if (m_buffer) | 610 | 117 | { | 611 | 117 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 117 | m_buffer = nullptr; | 613 | 117 | } | 614 | 117 | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.99k | { | 609 | 3.99k | if (m_buffer) | 610 | 2.77k | { | 611 | 2.77k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.77k | m_buffer = nullptr; | 613 | 2.77k | } | 614 | 3.99k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.17k | { | 609 | 3.17k | if (m_buffer) | 610 | 1.93k | { | 611 | 1.93k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.93k | m_buffer = nullptr; | 613 | 1.93k | } | 614 | 3.17k | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 404 | { | 609 | 404 | if (m_buffer) | 610 | 379 | { | 611 | 379 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 379 | m_buffer = nullptr; | 613 | 379 | } | 614 | 404 | } |
_ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 404 | { | 609 | 404 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 404 | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.72k | { | 609 | 1.72k | if (m_buffer) | 610 | 1.16k | { | 611 | 1.16k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.16k | m_buffer = nullptr; | 613 | 1.16k | } | 614 | 1.72k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 411 | { | 609 | 411 | if (m_buffer) | 610 | 87 | { | 611 | 87 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 87 | m_buffer = nullptr; | 613 | 87 | } | 614 | 411 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 7.49k | { | 609 | 7.49k | if (m_buffer) | 610 | 7.49k | { | 611 | 7.49k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7.49k | m_buffer = nullptr; | 613 | 7.49k | } | 614 | 7.49k | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.38k | { | 609 | 1.38k | if (m_buffer) | 610 | 31 | { | 611 | 31 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 31 | m_buffer = nullptr; | 613 | 31 | } | 614 | 1.38k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 24 | { | 609 | 24 | if (m_buffer) | 610 | 22 | { | 611 | 22 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 22 | m_buffer = nullptr; | 613 | 22 | } | 614 | 24 | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 51 | { | 609 | 51 | if (m_buffer) | 610 | 48 | { | 611 | 48 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 48 | m_buffer = nullptr; | 613 | 48 | } | 614 | 51 | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 27.3k | { | 609 | 27.3k | if (m_buffer) | 610 | 19.3k | { | 611 | 19.3k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 19.3k | m_buffer = nullptr; | 613 | 19.3k | } | 614 | 27.3k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIbNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 136 | { | 609 | 136 | if (m_buffer) | 610 | 126 | { | 611 | 126 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 126 | m_buffer = nullptr; | 613 | 126 | } | 614 | 136 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.90k | { | 609 | 3.90k | if (m_buffer) | 610 | 226 | { | 611 | 226 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 226 | m_buffer = nullptr; | 613 | 226 | } | 614 | 3.90k | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6.67k | { | 609 | 6.67k | if (m_buffer) | 610 | 408 | { | 611 | 408 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 408 | m_buffer = nullptr; | 613 | 408 | } | 614 | 6.67k | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 19.6k | { | 609 | 19.6k | if (m_buffer) | 610 | 19.6k | { | 611 | 19.6k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 19.6k | m_buffer = nullptr; | 613 | 19.6k | } | 614 | 19.6k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 704k | { | 609 | 704k | if (m_buffer) | 610 | 649k | { | 611 | 649k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 649k | m_buffer = nullptr; | 613 | 649k | } | 614 | 704k | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 127k | { | 609 | 127k | if (m_buffer) | 610 | 22.8k | { | 611 | 22.8k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 22.8k | m_buffer = nullptr; | 613 | 22.8k | } | 614 | 127k | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.36k | { | 609 | 1.36k | if (m_buffer) | 610 | 408 | { | 611 | 408 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 408 | m_buffer = nullptr; | 613 | 408 | } | 614 | 1.36k | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6.03k | { | 609 | 6.03k | if (m_buffer) | 610 | 5.95k | { | 611 | 5.95k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 5.95k | m_buffer = nullptr; | 613 | 5.95k | } | 614 | 6.03k | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 382 | { | 609 | 382 | if (m_buffer) | 610 | 323 | { | 611 | 323 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 323 | m_buffer = nullptr; | 613 | 323 | } | 614 | 382 | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 24 | { | 609 | 24 | if (m_buffer) | 610 | 13 | { | 611 | 13 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 13 | m_buffer = nullptr; | 613 | 13 | } | 614 | 24 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 617k | { | 609 | 617k | if (m_buffer) | 610 | 55.6k | { | 611 | 55.6k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 55.6k | m_buffer = nullptr; | 613 | 55.6k | } | 614 | 617k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 209k | { | 609 | 209k | if (m_buffer) | 610 | 209k | { | 611 | 209k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 209k | m_buffer = nullptr; | 613 | 209k | } | 614 | 209k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 603 | { | 609 | 603 | if (m_buffer) | 610 | 159 | { | 611 | 159 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 159 | m_buffer = nullptr; | 613 | 159 | } | 614 | 603 | } |
_ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 4 | { | 609 | 4 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 4 | } |
_ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 408 | { | 609 | 408 | if (m_buffer) | 610 | 8 | { | 611 | 8 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 8 | m_buffer = nullptr; | 613 | 8 | } | 614 | 408 | } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 408 | { | 609 | 408 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 408 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 84.8k | { | 609 | 84.8k | if (m_buffer) | 610 | 59.6k | { | 611 | 59.6k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 59.6k | m_buffer = nullptr; | 613 | 59.6k | } | 614 | 84.8k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.99k | { | 609 | 1.99k | if (m_buffer) | 610 | 1.76k | { | 611 | 1.76k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.76k | m_buffer = nullptr; | 613 | 1.76k | } | 614 | 1.99k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 693k | { | 609 | 693k | if (m_buffer) | 610 | 692k | { | 611 | 692k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 692k | m_buffer = nullptr; | 613 | 692k | } | 614 | 693k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 200 | { | 609 | 200 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 200 | } |
_ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.29k | { | 609 | 1.29k | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 1.29k | } |
_ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.05k | { | 609 | 1.05k | if (m_buffer) | 610 | 675 | { | 611 | 675 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 675 | m_buffer = nullptr; | 613 | 675 | } | 614 | 1.05k | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 352 | { | 609 | 352 | if (m_buffer) | 610 | 352 | { | 611 | 352 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 352 | m_buffer = nullptr; | 613 | 352 | } | 614 | 352 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.13k | { | 609 | 1.13k | if (m_buffer) | 610 | 807 | { | 611 | 807 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 807 | m_buffer = nullptr; | 613 | 807 | } | 614 | 1.13k | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.12k | { | 609 | 2.12k | if (m_buffer) | 610 | 1.22k | { | 611 | 1.22k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.22k | m_buffer = nullptr; | 613 | 1.22k | } | 614 | 2.12k | } |
_ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 253 | { | 609 | 253 | if (m_buffer) | 610 | 140 | { | 611 | 140 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 140 | m_buffer = nullptr; | 613 | 140 | } | 614 | 253 | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 342 | { | 609 | 342 | if (m_buffer) | 610 | 23 | { | 611 | 23 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 23 | m_buffer = nullptr; | 613 | 23 | } | 614 | 342 | } |
_ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.07k | { | 609 | 2.07k | if (m_buffer) | 610 | 2.02k | { | 611 | 2.02k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.02k | m_buffer = nullptr; | 613 | 2.02k | } | 614 | 2.07k | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 5.58k | { | 609 | 5.58k | if (m_buffer) | 610 | 1.67k | { | 611 | 1.67k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.67k | m_buffer = nullptr; | 613 | 1.67k | } | 614 | 5.58k | } |
_ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 74 | { | 609 | 74 | if (m_buffer) | 610 | 9 | { | 611 | 9 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 9 | m_buffer = nullptr; | 613 | 9 | } | 614 | 74 | } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 86 | { | 609 | 86 | if (m_buffer) | 610 | 11 | { | 611 | 11 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 11 | m_buffer = nullptr; | 613 | 11 | } | 614 | 86 | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 368 | { | 609 | 368 | if (m_buffer) | 610 | 363 | { | 611 | 363 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 363 | m_buffer = nullptr; | 613 | 363 | } | 614 | 368 | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 368 | { | 609 | 368 | if (m_buffer) | 610 | 140 | { | 611 | 140 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 140 | m_buffer = nullptr; | 613 | 140 | } | 614 | 368 | } |
_ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 368 | { | 609 | 368 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 368 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 457 | { | 609 | 457 | if (m_buffer) | 610 | 457 | { | 611 | 457 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 457 | m_buffer = nullptr; | 613 | 457 | } | 614 | 457 | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 29 | { | 609 | 29 | if (m_buffer) | 610 | 29 | { | 611 | 29 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 29 | m_buffer = nullptr; | 613 | 29 | } | 614 | 29 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 28 | { | 609 | 28 | if (m_buffer) | 610 | 28 | { | 611 | 28 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 28 | m_buffer = nullptr; | 613 | 28 | } | 614 | 28 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 28 | { | 609 | 28 | if (m_buffer) | 610 | 28 | { | 611 | 28 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 28 | m_buffer = nullptr; | 613 | 28 | } | 614 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.41k | { | 609 | 2.41k | if (m_buffer) | 610 | 1.18k | { | 611 | 1.18k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.18k | m_buffer = nullptr; | 613 | 1.18k | } | 614 | 2.41k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 589 | { | 609 | 589 | if (m_buffer) | 610 | 589 | { | 611 | 589 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 589 | m_buffer = nullptr; | 613 | 589 | } | 614 | 589 | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 96 | { | 609 | 96 | if (m_buffer) | 610 | 74 | { | 611 | 74 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 74 | m_buffer = nullptr; | 613 | 74 | } | 614 | 96 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E17_deallocateBufferEv Line | Count | Source | 608 | 82 | { | 609 | 82 | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 82 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 72 | { | 609 | 72 | if (m_buffer) | 610 | 8 | { | 611 | 8 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 8 | m_buffer = nullptr; | 613 | 8 | } | 614 | 72 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E17_deallocateBufferEv Line | Count | Source | 608 | 82 | { | 609 | 82 | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 82 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 28.4k | { | 609 | 28.4k | if (m_buffer) | 610 | 26.4k | { | 611 | 26.4k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 26.4k | m_buffer = nullptr; | 613 | 26.4k | } | 614 | 28.4k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 162 | { | 609 | 162 | if (m_buffer) | 610 | 124 | { | 611 | 124 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 124 | m_buffer = nullptr; | 613 | 124 | } | 614 | 162 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 77.8k | { | 609 | 77.8k | if (m_buffer) | 610 | 2.08k | { | 611 | 2.08k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.08k | m_buffer = nullptr; | 613 | 2.08k | } | 614 | 77.8k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6.96k | { | 609 | 6.96k | if (m_buffer) | 610 | 5.66k | { | 611 | 5.66k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 5.66k | m_buffer = nullptr; | 613 | 5.66k | } | 614 | 6.96k | } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 4 | { | 609 | 4 | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 4 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 139 | { | 609 | 139 | if (m_buffer) | 610 | 19 | { | 611 | 19 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 19 | m_buffer = nullptr; | 613 | 19 | } | 614 | 139 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 223 | { | 609 | 223 | if (m_buffer) | 610 | 116 | { | 611 | 116 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 116 | m_buffer = nullptr; | 613 | 116 | } | 614 | 223 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 81 | { | 609 | 81 | if (m_buffer) | 610 | 81 | { | 611 | 81 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 81 | m_buffer = nullptr; | 613 | 81 | } | 614 | 81 | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 833 | { | 609 | 833 | if (m_buffer) | 610 | 276 | { | 611 | 276 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 276 | m_buffer = nullptr; | 613 | 276 | } | 614 | 833 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 620 | { | 609 | 620 | if (m_buffer) | 610 | 449 | { | 611 | 449 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 449 | m_buffer = nullptr; | 613 | 449 | } | 614 | 620 | } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 5 | { | 609 | 5 | if (m_buffer) | 610 | 5 | { | 611 | 5 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 5 | m_buffer = nullptr; | 613 | 5 | } | 614 | 5 | } |
_ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 5 | { | 609 | 5 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 5 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 545k | { | 609 | 545k | if (m_buffer) | 610 | 237k | { | 611 | 237k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 237k | m_buffer = nullptr; | 613 | 237k | } | 614 | 545k | } |
_ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 321 | { | 609 | 321 | if (m_buffer) | 610 | 21 | { | 611 | 21 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 21 | m_buffer = nullptr; | 613 | 21 | } | 614 | 321 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 13 | { | 609 | 13 | if (m_buffer) | 610 | 13 | { | 611 | 13 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 13 | m_buffer = nullptr; | 613 | 13 | } | 614 | 13 | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 204k | { | 609 | 204k | if (m_buffer) | 610 | 81.8k | { | 611 | 81.8k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 81.8k | m_buffer = nullptr; | 613 | 81.8k | } | 614 | 204k | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 556 | { | 609 | 556 | if (m_buffer) | 610 | 22 | { | 611 | 22 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 22 | m_buffer = nullptr; | 613 | 22 | } | 614 | 556 | } |
_ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 4 | { | 609 | 4 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 4 | } |
_ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 34 | { | 609 | 34 | if (m_buffer) | 610 | 34 | { | 611 | 34 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 34 | m_buffer = nullptr; | 613 | 34 | } | 614 | 34 | } |
_ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 26 | { | 609 | 26 | if (m_buffer) | 610 | 12 | { | 611 | 12 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 12 | m_buffer = nullptr; | 613 | 12 | } | 614 | 26 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 386 | { | 609 | 386 | if (m_buffer) | 610 | 278 | { | 611 | 278 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 278 | m_buffer = nullptr; | 613 | 278 | } | 614 | 386 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 43.4k | { | 609 | 43.4k | if (m_buffer) | 610 | 2.45k | { | 611 | 2.45k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.45k | m_buffer = nullptr; | 613 | 2.45k | } | 614 | 43.4k | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 319 | { | 609 | 319 | if (m_buffer) | 610 | 68 | { | 611 | 68 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 68 | m_buffer = nullptr; | 613 | 68 | } | 614 | 319 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.04k | { | 609 | 3.04k | if (m_buffer) | 610 | 1.10k | { | 611 | 1.10k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.10k | m_buffer = nullptr; | 613 | 1.10k | } | 614 | 3.04k | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E17_deallocateBufferEv Line | Count | Source | 608 | 19 | { | 609 | 19 | if (m_buffer) | 610 | 19 | { | 611 | 19 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 19 | m_buffer = nullptr; | 613 | 19 | } | 614 | 19 | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 16 | { | 609 | 16 | if (m_buffer) | 610 | 16 | { | 611 | 16 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 16 | m_buffer = nullptr; | 613 | 16 | } | 614 | 16 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.89k | { | 609 | 3.89k | if (m_buffer) | 610 | 1.91k | { | 611 | 1.91k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.91k | m_buffer = nullptr; | 613 | 1.91k | } | 614 | 3.89k | } |
_ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 2 | } |
_ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 284 | { | 609 | 284 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 284 | } |
_ZN5Slang4ListINS_17DiffTransposePass27PendingBlockTerminatorEntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 129 | { | 609 | 129 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 129 | } |
_ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 71 | { | 609 | 71 | if (m_buffer) | 610 | 68 | { | 611 | 68 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 68 | m_buffer = nullptr; | 613 | 68 | } | 614 | 71 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 13 | { | 609 | 13 | if (m_buffer) | 610 | 6 | { | 611 | 6 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 6 | m_buffer = nullptr; | 613 | 6 | } | 614 | 13 | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 439 | { | 609 | 439 | if (m_buffer) | 610 | 435 | { | 611 | 435 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 435 | m_buffer = nullptr; | 613 | 435 | } | 614 | 439 | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 96.1k | { | 609 | 96.1k | if (m_buffer) | 610 | 8.87k | { | 611 | 8.87k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 8.87k | m_buffer = nullptr; | 613 | 8.87k | } | 614 | 96.1k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 112 | { | 609 | 112 | if (m_buffer) | 610 | 80 | { | 611 | 80 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 80 | m_buffer = nullptr; | 613 | 80 | } | 614 | 112 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 64 | { | 609 | 64 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 64 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 22.2k | { | 609 | 22.2k | if (m_buffer) | 610 | 22.2k | { | 611 | 22.2k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 22.2k | m_buffer = nullptr; | 613 | 22.2k | } | 614 | 22.2k | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 16.2k | { | 609 | 16.2k | if (m_buffer) | 610 | 16.2k | { | 611 | 16.2k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 16.2k | m_buffer = nullptr; | 613 | 16.2k | } | 614 | 16.2k | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.92k | { | 609 | 2.92k | if (m_buffer) | 610 | 14 | { | 611 | 14 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 14 | m_buffer = nullptr; | 613 | 14 | } | 614 | 2.92k | } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.12k | { | 609 | 3.12k | if (m_buffer) | 610 | 195 | { | 611 | 195 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 195 | m_buffer = nullptr; | 613 | 195 | } | 614 | 3.12k | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 800 | { | 609 | 800 | if (m_buffer) | 610 | 160 | { | 611 | 160 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 160 | m_buffer = nullptr; | 613 | 160 | } | 614 | 800 | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 246 | { | 609 | 246 | if (m_buffer) | 610 | 70 | { | 611 | 70 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 70 | m_buffer = nullptr; | 613 | 70 | } | 614 | 246 | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 48 | { | 609 | 48 | if (m_buffer) | 610 | 48 | { | 611 | 48 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 48 | m_buffer = nullptr; | 613 | 48 | } | 614 | 48 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 73 | { | 609 | 73 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 73 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 131 | { | 609 | 131 | if (m_buffer) | 610 | 113 | { | 611 | 113 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 113 | m_buffer = nullptr; | 613 | 113 | } | 614 | 131 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 44.0k | { | 609 | 44.0k | if (m_buffer) | 610 | 10.1k | { | 611 | 10.1k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 10.1k | m_buffer = nullptr; | 613 | 10.1k | } | 614 | 44.0k | } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 211 | { | 609 | 211 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 211 | } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 44 | { | 609 | 44 | if (m_buffer) | 610 | 44 | { | 611 | 44 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 44 | m_buffer = nullptr; | 613 | 44 | } | 614 | 44 | } |
slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 2 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 121 | { | 609 | 121 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 121 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 8.41k | { | 609 | 8.41k | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 8.41k | } |
_ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 11 | { | 609 | 11 | if (m_buffer) | 610 | 11 | { | 611 | 11 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 11 | m_buffer = nullptr; | 613 | 11 | } | 614 | 11 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 122 | { | 609 | 122 | if (m_buffer) | 610 | 122 | { | 611 | 122 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 122 | m_buffer = nullptr; | 613 | 122 | } | 614 | 122 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 659 | { | 609 | 659 | if (m_buffer) | 610 | 46 | { | 611 | 46 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 46 | m_buffer = nullptr; | 613 | 46 | } | 614 | 659 | } |
_ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 31 | { | 609 | 31 | if (m_buffer) | 610 | 31 | { | 611 | 31 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 31 | m_buffer = nullptr; | 613 | 31 | } | 614 | 31 | } |
_ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 429 | { | 609 | 429 | if (m_buffer) | 610 | 385 | { | 611 | 385 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 385 | m_buffer = nullptr; | 613 | 385 | } | 614 | 429 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 24 | { | 609 | 24 | if (m_buffer) | 610 | 6 | { | 611 | 6 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 6 | m_buffer = nullptr; | 613 | 6 | } | 614 | 24 | } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10 | { | 609 | 10 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 10 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10 | { | 609 | 10 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 10 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10 | { | 609 | 10 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 10 | } |
_ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 983 | { | 609 | 983 | if (m_buffer) | 610 | 196 | { | 611 | 196 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 196 | m_buffer = nullptr; | 613 | 196 | } | 614 | 983 | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.45k | { | 609 | 1.45k | if (m_buffer) | 610 | 988 | { | 611 | 988 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 988 | m_buffer = nullptr; | 613 | 988 | } | 614 | 1.45k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 263 | { | 609 | 263 | if (m_buffer) | 610 | 71 | { | 611 | 71 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 71 | m_buffer = nullptr; | 613 | 71 | } | 614 | 263 | } |
_ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 42.5k | { | 609 | 42.5k | if (m_buffer) | 610 | 846 | { | 611 | 846 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 846 | m_buffer = nullptr; | 613 | 846 | } | 614 | 42.5k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 241 | { | 609 | 241 | if (m_buffer) | 610 | 127 | { | 611 | 127 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 127 | m_buffer = nullptr; | 613 | 127 | } | 614 | 241 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 237 | { | 609 | 237 | if (m_buffer) | 610 | 235 | { | 611 | 235 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 235 | m_buffer = nullptr; | 613 | 235 | } | 614 | 237 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.00k | { | 609 | 1.00k | if (m_buffer) | 610 | 89 | { | 611 | 89 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 89 | m_buffer = nullptr; | 613 | 89 | } | 614 | 1.00k | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 8.20k | { | 609 | 8.20k | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 8.20k | } |
_ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 514 | { | 609 | 514 | if (m_buffer) | 610 | 511 | { | 611 | 511 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 511 | m_buffer = nullptr; | 613 | 511 | } | 614 | 514 | } |
_ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6 | { | 609 | 6 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 6 | } |
_ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 23 | { | 609 | 23 | if (m_buffer) | 610 | 23 | { | 611 | 23 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 23 | m_buffer = nullptr; | 613 | 23 | } | 614 | 23 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 51.4k | { | 609 | 51.4k | if (m_buffer) | 610 | 1.44k | { | 611 | 1.44k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.44k | m_buffer = nullptr; | 613 | 1.44k | } | 614 | 51.4k | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 157k | { | 609 | 157k | if (m_buffer) | 610 | 41.7k | { | 611 | 41.7k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 41.7k | m_buffer = nullptr; | 613 | 41.7k | } | 614 | 157k | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 157k | { | 609 | 157k | if (m_buffer) | 610 | 41.7k | { | 611 | 41.7k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 41.7k | m_buffer = nullptr; | 613 | 41.7k | } | 614 | 157k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 4.86k | { | 609 | 4.86k | if (m_buffer) | 610 | 4.47k | { | 611 | 4.47k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4.47k | m_buffer = nullptr; | 613 | 4.47k | } | 614 | 4.86k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10.7k | { | 609 | 10.7k | if (m_buffer) | 610 | 7.15k | { | 611 | 7.15k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7.15k | m_buffer = nullptr; | 613 | 7.15k | } | 614 | 10.7k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 234 | { | 609 | 234 | if (m_buffer) | 610 | 12 | { | 611 | 12 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 12 | m_buffer = nullptr; | 613 | 12 | } | 614 | 234 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6 | { | 609 | 6 | if (m_buffer) | 610 | 6 | { | 611 | 6 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 6 | m_buffer = nullptr; | 613 | 6 | } | 614 | 6 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6 | { | 609 | 6 | if (m_buffer) | 610 | 6 | { | 611 | 6 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 6 | m_buffer = nullptr; | 613 | 6 | } | 614 | 6 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass18NewOutputParamInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 6 | { | 609 | 6 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 6 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 25 | { | 609 | 25 | if (m_buffer) | 610 | 25 | { | 611 | 25 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 25 | m_buffer = nullptr; | 613 | 25 | } | 614 | 25 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 107 | { | 609 | 107 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 107 | } |
_ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 82 | { | 609 | 82 | if (m_buffer) | 610 | 34 | { | 611 | 34 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 34 | m_buffer = nullptr; | 613 | 34 | } | 614 | 82 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 82 | { | 609 | 82 | if (m_buffer) | 610 | 52 | { | 611 | 52 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 52 | m_buffer = nullptr; | 613 | 52 | } | 614 | 82 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 134 | { | 609 | 134 | if (m_buffer) | 610 | 134 | { | 611 | 134 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 134 | m_buffer = nullptr; | 613 | 134 | } | 614 | 134 | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 9.53k | { | 609 | 9.53k | if (m_buffer) | 610 | 9.53k | { | 611 | 9.53k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 9.53k | m_buffer = nullptr; | 613 | 9.53k | } | 614 | 9.53k | } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 42.5k | { | 609 | 42.5k | if (m_buffer) | 610 | 170 | { | 611 | 170 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 170 | m_buffer = nullptr; | 613 | 170 | } | 614 | 42.5k | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 16.6k | { | 609 | 16.6k | if (m_buffer) | 610 | 1.83k | { | 611 | 1.83k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1.83k | m_buffer = nullptr; | 613 | 1.83k | } | 614 | 16.6k | } |
_ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 162 | { | 609 | 162 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 162 | } |
_ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 37 | { | 609 | 37 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 37 | } |
slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 13 | { | 609 | 13 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 13 | } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 98.0k | { | 609 | 98.0k | if (m_buffer) | 610 | 98.0k | { | 611 | 98.0k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 98.0k | m_buffer = nullptr; | 613 | 98.0k | } | 614 | 98.0k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.78k | { | 609 | 1.78k | if (m_buffer) | 610 | 183 | { | 611 | 183 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 183 | m_buffer = nullptr; | 613 | 183 | } | 614 | 1.78k | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 162 | { | 609 | 162 | if (m_buffer) | 610 | 96 | { | 611 | 96 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 96 | m_buffer = nullptr; | 613 | 96 | } | 614 | 162 | } |
_ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.03k | { | 609 | 3.03k | if (m_buffer) | 610 | 3.02k | { | 611 | 3.02k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3.02k | m_buffer = nullptr; | 613 | 3.02k | } | 614 | 3.03k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 242 | { | 609 | 242 | if (m_buffer) | 610 | 109 | { | 611 | 109 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 109 | m_buffer = nullptr; | 613 | 109 | } | 614 | 242 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 133 | { | 609 | 133 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 133 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.29k | { | 609 | 3.29k | if (m_buffer) | 610 | 63 | { | 611 | 63 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 63 | m_buffer = nullptr; | 613 | 63 | } | 614 | 3.29k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 283 | { | 609 | 283 | if (m_buffer) | 610 | 283 | { | 611 | 283 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 283 | m_buffer = nullptr; | 613 | 283 | } | 614 | 283 | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 11.0k | { | 609 | 11.0k | if (m_buffer) | 610 | 8.25k | { | 611 | 8.25k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 8.25k | m_buffer = nullptr; | 613 | 8.25k | } | 614 | 11.0k | } |
_ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 18.3k | { | 609 | 18.3k | if (m_buffer) | 610 | 18.3k | { | 611 | 18.3k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 18.3k | m_buffer = nullptr; | 613 | 18.3k | } | 614 | 18.3k | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 180 | { | 609 | 180 | if (m_buffer) | 610 | 144 | { | 611 | 144 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 144 | m_buffer = nullptr; | 613 | 144 | } | 614 | 180 | } |
_ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 35 | { | 609 | 35 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 35 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 35 | { | 609 | 35 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 35 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 35 | { | 609 | 35 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 35 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 4 | { | 609 | 4 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 4 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 419 | { | 609 | 419 | if (m_buffer) | 610 | 88 | { | 611 | 88 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 88 | m_buffer = nullptr; | 613 | 88 | } | 614 | 419 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 64 | { | 609 | 64 | if (m_buffer) | 610 | 22 | { | 611 | 22 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 22 | m_buffer = nullptr; | 613 | 22 | } | 614 | 64 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 35 | { | 609 | 35 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 35 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 913 | { | 609 | 913 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 913 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 35 | { | 609 | 35 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 35 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 35 | { | 609 | 35 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 35 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 144 | { | 609 | 144 | if (m_buffer) | 610 | 96 | { | 611 | 96 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 96 | m_buffer = nullptr; | 613 | 96 | } | 614 | 144 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 613 | { | 609 | 613 | if (m_buffer) | 610 | 581 | { | 611 | 581 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 581 | m_buffer = nullptr; | 613 | 581 | } | 614 | 613 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 633 | { | 609 | 633 | if (m_buffer) | 610 | 591 | { | 611 | 591 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 591 | m_buffer = nullptr; | 613 | 591 | } | 614 | 633 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 410 | { | 609 | 410 | if (m_buffer) | 610 | 388 | { | 611 | 388 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 388 | m_buffer = nullptr; | 613 | 388 | } | 614 | 410 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 410 | { | 609 | 410 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 410 | } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 21.3k | { | 609 | 21.3k | if (m_buffer) | 610 | 20.3k | { | 611 | 20.3k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 20.3k | m_buffer = nullptr; | 613 | 20.3k | } | 614 | 21.3k | } |
_ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 11.3k | { | 609 | 11.3k | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 11.3k | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 677 | { | 609 | 677 | if (m_buffer) | 610 | 150 | { | 611 | 150 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 150 | m_buffer = nullptr; | 613 | 150 | } | 614 | 677 | } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 363 | { | 609 | 363 | if (m_buffer) | 610 | 228 | { | 611 | 228 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 228 | m_buffer = nullptr; | 613 | 228 | } | 614 | 363 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 251 | { | 609 | 251 | if (m_buffer) | 610 | 150 | { | 611 | 150 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 150 | m_buffer = nullptr; | 613 | 150 | } | 614 | 251 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 251 | { | 609 | 251 | if (m_buffer) | 610 | 246 | { | 611 | 246 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 246 | m_buffer = nullptr; | 613 | 246 | } | 614 | 251 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 251 | { | 609 | 251 | if (m_buffer) | 610 | 140 | { | 611 | 140 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 140 | m_buffer = nullptr; | 613 | 140 | } | 614 | 251 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 251 | { | 609 | 251 | if (m_buffer) | 610 | 219 | { | 611 | 219 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 219 | m_buffer = nullptr; | 613 | 219 | } | 614 | 251 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 81 | { | 609 | 81 | if (m_buffer) | 610 | 81 | { | 611 | 81 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 81 | m_buffer = nullptr; | 613 | 81 | } | 614 | 81 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.55k | { | 609 | 1.55k | if (m_buffer) | 610 | 544 | { | 611 | 544 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 544 | m_buffer = nullptr; | 613 | 544 | } | 614 | 1.55k | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 18.0k | { | 609 | 18.0k | if (m_buffer) | 610 | 757 | { | 611 | 757 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 757 | m_buffer = nullptr; | 613 | 757 | } | 614 | 18.0k | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 415 | { | 609 | 415 | if (m_buffer) | 610 | 302 | { | 611 | 302 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 302 | m_buffer = nullptr; | 613 | 302 | } | 614 | 415 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1.15k | { | 609 | 1.15k | if (m_buffer) | 610 | 842 | { | 611 | 842 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 842 | m_buffer = nullptr; | 613 | 842 | } | 614 | 1.15k | } |
_ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 403 | { | 609 | 403 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 403 | } |
_ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10 | { | 609 | 10 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 10 | } |
_ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 336 | { | 609 | 336 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 336 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.49k | { | 609 | 2.49k | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 2.49k | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.49k | { | 609 | 2.49k | if (m_buffer) | 610 | 2.49k | { | 611 | 2.49k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.49k | m_buffer = nullptr; | 613 | 2.49k | } | 614 | 2.49k | } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 480 | { | 609 | 480 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 480 | } |
_ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 336 | { | 609 | 336 | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 336 | } |
_ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 336 | { | 609 | 336 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 336 | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 306 | { | 609 | 306 | if (m_buffer) | 610 | 10 | { | 611 | 10 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 10 | m_buffer = nullptr; | 613 | 10 | } | 614 | 306 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 153 | { | 609 | 153 | if (m_buffer) | 610 | 51 | { | 611 | 51 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 51 | m_buffer = nullptr; | 613 | 51 | } | 614 | 153 | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 153 | { | 609 | 153 | if (m_buffer) | 610 | 51 | { | 611 | 51 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 51 | m_buffer = nullptr; | 613 | 51 | } | 614 | 153 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 153 | { | 609 | 153 | if (m_buffer) | 610 | 49 | { | 611 | 49 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 49 | m_buffer = nullptr; | 613 | 49 | } | 614 | 153 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 51 | { | 609 | 51 | if (m_buffer) | 610 | 51 | { | 611 | 51 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 51 | m_buffer = nullptr; | 613 | 51 | } | 614 | 51 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 14 | { | 609 | 14 | if (m_buffer) | 610 | 11 | { | 611 | 11 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 11 | m_buffer = nullptr; | 613 | 11 | } | 614 | 14 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 4 | { | 609 | 4 | if (m_buffer) | 610 | 4 | { | 611 | 4 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 4 | m_buffer = nullptr; | 613 | 4 | } | 614 | 4 | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 229 | { | 609 | 229 | if (m_buffer) | 610 | 180 | { | 611 | 180 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 180 | m_buffer = nullptr; | 613 | 180 | } | 614 | 229 | } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 250k | { | 609 | 250k | if (m_buffer) | 610 | 102k | { | 611 | 102k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 102k | m_buffer = nullptr; | 613 | 102k | } | 614 | 250k | } |
_ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 44 | { | 609 | 44 | if (m_buffer) | 610 | 44 | { | 611 | 44 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 44 | m_buffer = nullptr; | 613 | 44 | } | 614 | 44 | } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 48 | { | 609 | 48 | if (m_buffer) | 610 | 48 | { | 611 | 48 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 48 | m_buffer = nullptr; | 613 | 48 | } | 614 | 48 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10 | { | 609 | 10 | if (m_buffer) | 610 | 10 | { | 611 | 10 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 10 | m_buffer = nullptr; | 613 | 10 | } | 614 | 10 | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 10 | { | 609 | 10 | if (m_buffer) | 610 | 10 | { | 611 | 10 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 10 | m_buffer = nullptr; | 613 | 10 | } | 614 | 10 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 7 | { | 609 | 7 | if (m_buffer) | 610 | 7 | { | 611 | 7 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 7 | m_buffer = nullptr; | 613 | 7 | } | 614 | 7 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12RawSourceLocENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData7InstRunENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData9InstIndexENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData12SourceLocRunENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 704 | { | 609 | 704 | if (m_buffer) | 610 | 704 | { | 611 | 704 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 704 | m_buffer = nullptr; | 613 | 704 | } | 614 | 704 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 336 | { | 609 | 336 | if (m_buffer) | 610 | 276 | { | 611 | 276 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 276 | m_buffer = nullptr; | 613 | 276 | } | 614 | 336 | } |
_ZN5Slang4ListINS_6RefPtrINS_8IRModuleEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 336 | { | 609 | 336 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 336 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 2 | } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 2 | } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E17_deallocateBufferEv Line | Count | Source | 608 | 48 | { | 609 | 48 | if (m_buffer) | 610 | 48 | { | 611 | 48 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 48 | m_buffer = nullptr; | 613 | 48 | } | 614 | 48 | } |
_ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 463 | { | 609 | 463 | if (m_buffer) | 610 | 413 | { | 611 | 413 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 413 | m_buffer = nullptr; | 613 | 413 | } | 614 | 463 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 0 | { | 611 | 0 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 0 | m_buffer = nullptr; | 613 | 0 | } | 614 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 1 | { | 609 | 1 | if (m_buffer) | 610 | 1 | { | 611 | 1 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 1 | m_buffer = nullptr; | 613 | 1 | } | 614 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 417 | { | 609 | 417 | if (m_buffer) | 610 | 417 | { | 611 | 417 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 417 | m_buffer = nullptr; | 613 | 417 | } | 614 | 417 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2 | { | 609 | 2 | if (m_buffer) | 610 | 2 | { | 611 | 2 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2 | m_buffer = nullptr; | 613 | 2 | } | 614 | 2 | } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 172 | { | 609 | 172 | if (m_buffer) | 610 | 158 | { | 611 | 158 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 158 | m_buffer = nullptr; | 613 | 158 | } | 614 | 172 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 9 | { | 609 | 9 | if (m_buffer) | 610 | 9 | { | 611 | 9 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 9 | m_buffer = nullptr; | 613 | 9 | } | 614 | 9 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 28 | { | 609 | 28 | if (m_buffer) | 610 | 26 | { | 611 | 26 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 26 | m_buffer = nullptr; | 613 | 26 | } | 614 | 28 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E17_deallocateBufferEv Line | Count | Source | 608 | 28 | { | 609 | 28 | if (m_buffer) | 610 | 28 | { | 611 | 28 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 28 | m_buffer = nullptr; | 613 | 28 | } | 614 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 344 | { | 609 | 344 | if (m_buffer) | 610 | 336 | { | 611 | 336 | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 336 | m_buffer = nullptr; | 613 | 336 | } | 614 | 344 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE17_deallocateBufferEv _ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 2.40k | { | 609 | 2.40k | if (m_buffer) | 610 | 2.37k | { | 611 | 2.37k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 2.37k | m_buffer = nullptr; | 613 | 2.37k | } | 614 | 2.40k | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE17_deallocateBufferEv Line | Count | Source | 608 | 3.06k | { | 609 | 3.06k | if (m_buffer) | 610 | 3.06k | { | 611 | 3.06k | AllocateMethod<T, TAllocator>::deallocateArray(m_buffer, m_capacity); | 612 | 3.06k | m_buffer = nullptr; | 613 | 3.06k | } | 614 | 3.06k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_11InstructionENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_7OperandENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_24InstructionPrintingClassENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_11OperandKindENS_17StandardAllocatorEE17_deallocateBufferEv Unexecuted instantiation: _ZN5Slang4ListINS_9EnumerantENS_17StandardAllocatorEE17_deallocateBufferEv |
615 | | static inline T* _allocate(Index count) |
616 | 26.2M | { |
617 | 26.2M | return AllocateMethod<T, TAllocator>::allocateArray(count); |
618 | 26.2M | } _ZN5Slang4ListImNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 18.0M | { | 617 | 18.0M | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 18.0M | } |
_ZN5Slang4ListIhNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 67.1k | { | 617 | 67.1k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 67.1k | } |
_ZN5Slang4ListINS_9SourceMap5EntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 4 | { | 617 | 4 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SourceView15AbsoluteSegmentENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_10SourceView5EntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 138 | { | 617 | 138 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 138 | } |
_ZN5Slang4ListINS_14CommandLineArgENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.18k | { | 617 | 1.18k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.18k | } |
_ZN5Slang4ListINS_6StringENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 23.8k | { | 617 | 23.8k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 23.8k | } |
_ZN5Slang4ListINS_5TokenENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 5.35k | { | 617 | 5.35k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 5.35k | } |
_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 22.9k | { | 617 | 22.9k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 22.9k | } |
_ZN5Slang4ListINS_13CapabilitySetENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 810 | { | 617 | 810 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 810 | } |
_ZN5Slang4ListIPNS_4ExprENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 170k | { | 617 | 170k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 170k | } |
_ZN5Slang4ListINS_9SourceLocENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 23.8k | { | 617 | 23.8k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 23.8k | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_4TypeEPNS_14SubtypeWitnessEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 246 | { | 617 | 246 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 246 | } |
_ZN5Slang4ListIPNS_8ModifierENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 71 | { | 617 | 71 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 71 | } |
_ZN5Slang4ListINS_14ValNodeOperandENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 574k | { | 617 | 574k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 574k | } |
_ZN5Slang4ListINS0_IPvNS_17StandardAllocatorEEES2_E9_allocateEl Line | Count | Source | 616 | 949 | { | 617 | 949 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 949 | } |
_ZN5Slang4ListINS_10DictionaryIPvS2_NS_4HashIS2_EESt8equal_toIS2_EEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 949 | { | 617 | 949 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 949 | } |
_ZN5Slang4ListINS_7HashSetIPvEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 949 | { | 617 | 949 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 949 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3.56M | { | 617 | 3.56M | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3.56M | } |
_ZN5Slang4ListIPNS_8NodeBaseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.55k | { | 617 | 1.55k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.55k | } |
_ZN5Slang4ListIlNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 23.1k | { | 617 | 23.1k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 23.1k | } |
_ZN5Slang4ListINS_10TypeLayout12ResourceInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.80k | { | 617 | 2.80k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.80k | } |
_ZN5Slang4ListINS_9VarLayout12ResourceInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.95k | { | 617 | 1.95k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.95k | } |
_ZN5Slang4ListINS_18IRStructTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.16k | { | 617 | 1.16k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.16k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17IRTupleTypeLayout7Builder9FieldInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14SubtypeWitnessENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_3ValENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 920k | { | 617 | 920k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 920k | } |
_ZN5Slang4ListIPNS_11DeclRefBaseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7.49k | { | 617 | 7.49k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7.49k | } |
_ZN5Slang4ListIPNS_4DeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 71.7k | { | 617 | 71.7k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 71.7k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_14ASTDumpContext10ObjectInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPKNS_5ScopeENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter4PartENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_5RangeIlEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 22 | { | 617 | 22 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 22 | } |
_ZN5Slang4ListINS_12ASTEmitScopeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 48 | { | 617 | 48 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 48 | } |
_ZN5Slang4ListIPNS_4StmtENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.14k | { | 617 | 1.14k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.14k | } |
_ZN5Slang4ListIPNS_4TypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 19.3k | { | 617 | 19.3k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 19.3k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_25ExpandedSpecializationArgENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIbNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 126 | { | 617 | 126 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 126 | } |
_ZN5Slang4ListIPNS_20PolynomialIntValTermENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 226 | { | 617 | 226 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 226 | } |
_ZN5Slang4ListIPNS_22PolynomialIntValFactorENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 408 | { | 617 | 408 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 408 | } |
_ZN5Slang4ListIPNS_6IntValENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_14ConstantIntValENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_23CompressedCapabilitySet15StageAndAtomSetENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 39.6k | { | 617 | 39.6k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 39.6k | } |
_ZN5Slang4ListINS_14CapabilityAtomENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 19.6k | { | 617 | 19.6k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 19.6k | } |
_ZN5Slang4ListINS_16SemanticsVisitor10ConstraintENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 649k | { | 617 | 649k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 649k | } |
_ZN5Slang4ListINS_17OverloadCandidateENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 22.8k | { | 617 | 22.8k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 22.8k | } |
_ZN5Slang4ListINS_16LookupResultItemENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 77.9k | { | 617 | 77.9k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 77.9k | } |
_ZN5Slang4ListIPNS_15ConstructorDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 408 | { | 617 | 408 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 408 | } |
_ZN5Slang4ListIPNS_11VarDeclBaseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 323 | { | 617 | 323 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 323 | } |
_ZN5Slang4ListINS_16ParamPassingModeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 13 | { | 617 | 13 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 13 | } |
_ZN5Slang4ListINS_21ProvenenceNodeWithLocENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 362 | { | 617 | 362 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 362 | } |
_ZN5Slang4ListIPNS_13ExtensionDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 55.8k | { | 617 | 55.8k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 55.8k | } |
_ZN5Slang4ListINS_7DeclRefINS_9ParamDeclEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 209k | { | 617 | 209k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 209k | } |
_ZN5Slang4ListIPNS_15InheritanceDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 159 | { | 617 | 159 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 159 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_25GenericTypeConstraintDeclENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_24SemanticsDeclBodyVisitor15DeclAndCtorInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 8 | { | 617 | 8 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 8 | } |
_ZN5Slang4ListIPNS_10ModuleDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 31 | { | 617 | 31 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 31 | } |
_ZN5Slang4ListINS_6RefPtrINS_15DeclAssociationEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 6.33k | { | 617 | 6.33k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 6.33k | } |
slang-check-decl.cpp:_ZN5Slang4ListIZNS_30SemanticsDeclAttributesVisitor15visitStructDeclEPNS_10StructDeclEE12BitFieldInfoNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListIPNS_4NameENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 22 | { | 617 | 22 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 22 | } |
_ZN5Slang4ListINS_15SPIRVAsmOperandENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7 | { | 617 | 7 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7 | } |
_ZN5Slang4ListINS_7DeclRefINS_11AggTypeDeclEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 59.6k | { | 617 | 59.6k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 59.6k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.76k | { | 617 | 1.76k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.76k | } |
_ZN5Slang4ListINS_8QualTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 692k | { | 617 | 692k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 692k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpecializationArgENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_19SpecializationParamENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_15ShaderParamInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 691 | { | 617 | 691 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 691 | } |
_ZN5Slang4ListIPNS_13ContainerDeclENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 352 | { | 617 | 352 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 352 | } |
_ZN5Slang4ListIPNS_6ModuleENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 860 | { | 617 | 860 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 860 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ComponentTypeEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.22k | { | 617 | 1.22k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.22k | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6Module24ModuleSpecializationInfo14GenericArgInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_22EndToEndCompileRequest14EntryPointInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 140 | { | 617 | 140 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 140 | } |
_ZN5Slang4ListINS_15SearchDirectoryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 69 | { | 617 | 69 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 69 | } |
_ZN5Slang4ListINS_24DownstreamCompileOptions17CapabilityVersionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 9 | { | 617 | 9 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 9 | } |
_ZN5Slang4ListINS_6ComPtrINS_9IArtifactEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.68k | { | 617 | 1.68k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.68k | } |
_ZN5Slang4ListIPNS_10SourceViewENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.76k | { | 617 | 1.76k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.76k | } |
_ZN5Slang4ListINS_6RefPtrINS_22TranslationUnitRequestEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 363 | { | 617 | 363 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 363 | } |
_ZN5Slang4ListINS_6RefPtrINS_25FrontEndEntryPointRequestEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 140 | { | 617 | 140 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 140 | } |
_ZN5Slang4ListIN5slang19CompilerOptionEntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 457 | { | 617 | 457 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 457 | } |
_ZN5Slang4ListINS_11MarkupEntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 53 | { | 617 | 53 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 53 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor15SearchItemInputENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 28 | { | 617 | 28 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ParsedDocumentationSpanENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11RequirementENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12DocumentPageENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter11NameAndTextENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_10ASTPrinter8PartPairENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_17DocMarkdownWriter9Signature12GenericParamENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12CallableDeclENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_13AssocTypeDeclENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_18TypeConstraintDeclENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_12DocumentPageEEENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_19IRWitnessTableEntryENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_14IRWitnessTableENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 11 | { | 617 | 11 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 11 | } |
_ZN5Slang4ListINS_18CLikeSourceEmitter10EmitActionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 589 | { | 617 | 589 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 589 | } |
slang-emit-cpp.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_112AxisWithSizeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 74 | { | 617 | 74 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 74 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 22.1k | { | 617 | 22.1k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 22.1k | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 26.4k | { | 617 | 26.4k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 26.4k | } |
_ZN5Slang4ListIPNS_7SpvInstENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 124 | { | 617 | 124 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 124 | } |
_ZN5Slang4ListINS0_I14SpvCapability_NS_17StandardAllocatorEEES2_E9_allocateEl Line | Count | Source | 616 | 4 | { | 617 | 4 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 8 | { | 617 | 8 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 8 | } |
_ZN5Slang4ListINS0_INS_18UnownedStringSliceENS_17StandardAllocatorEEES2_E9_allocateEl Line | Count | Source | 616 | 4 | { | 617 | 4 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_17SpvLiteralIntegerENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_6IRLoopENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.08k | { | 617 | 2.08k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.08k | } |
_ZN5Slang4ListIPNS_6IRFuncENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 5.66k | { | 617 | 5.66k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 5.66k | } |
_ZN5Slang4ListINS_15ByteCodeEmitter19InstRelocationEntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS_9VMOperandENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 4 | { | 617 | 4 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4 | } |
_ZN5Slang4ListIPNS_13IRStructFieldENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 19 | { | 617 | 19 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 19 | } |
_ZN5Slang4ListINS_25VMByteCodeFunctionBuilderENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListIPjNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 81 | { | 617 | 81 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 81 | } |
_ZN5Slang4ListIPNS_30IRDifferentiableTypeAnnotationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 449 | { | 617 | 449 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 449 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22FrontEndCompileRequest19ExtraEntryPointInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_6RefPtrINS_6ModuleEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 137 | { | 617 | 137 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 137 | } |
_ZN5Slang4ListINS_21SerializedOptionsDataENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 5 | { | 617 | 5 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 5 | } |
Unexecuted instantiation: _ZN5Slang4ListIN5slang10TargetDescENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_11AddressInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_15IRInterfaceTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 21 | { | 617 | 21 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 21 | } |
_ZN5Slang4ListIPNS_11IRStructKeyENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 13 | { | 617 | 13 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 13 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 237k | { | 617 | 237k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 237k | } |
_ZN5Slang4ListIPNS_7IRParamENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 81.8k | { | 617 | 81.8k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 81.8k | } |
_ZN5Slang4ListINS_25FuncBodyTranscriptionTaskENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 22 | { | 617 | 22 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 22 | } |
_ZN5Slang4ListIPNS_12IRDecorationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS_4EdgeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 34 | { | 617 | 34 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 34 | } |
_ZN5Slang4ListINS_6RefPtrINS_13IndexedRegionEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 12 | { | 617 | 12 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 12 | } |
_ZN5Slang4ListIPNS_13IndexedRegionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 278 | { | 617 | 278 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 278 | } |
_ZN5Slang4ListIPNS_5IRUseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.45k | { | 617 | 2.45k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.45k | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 68 | { | 617 | 68 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 68 | } |
slang-ir-autodiff-primal-hoist.cpp:_ZN5Slang4ListIZNS_L27createPrimalRecomputeBlocksEPNS_21IRGlobalValueWithCodeERNS_10DictionaryIPNS_7IRBlockENS0_INS_17IndexTrackingInfoENS_17StandardAllocatorEEENS_4HashIS5_EESt8equal_toIS5_EEEPNS_24IROutOfOrderCloneContextEE8WorkItemS7_E9_allocateEl Line | Count | Source | 616 | 19 | { | 617 | 19 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 19 | } |
_ZN5Slang4ListINS_14UseOrPseudoUseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 16 | { | 617 | 16 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 16 | } |
_ZN5Slang4ListINS_17IndexTrackingInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.10k | { | 617 | 1.10k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.10k | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.91k | { | 617 | 1.91k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.91k | } |
Unexecuted instantiation: _ZN5Slang4ListIZNS_17DiffTransposePass13transposeCallEPNS_9IRBuilderEPNS_6IRCallEPNS_6IRInstEE16DiffValWriteBackNS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRLoadENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_27IRInterfaceRequirementEntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 68 | { | 617 | 68 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 68 | } |
_ZN5Slang4ListIZNS_12AutoDiffPass43fillDifferentialTypeImplementationForStructEPNS_36DifferentiableTypeConformanceContextERNS_17OrderedDictionaryIPNS_6IRInstENS1_39IntermediateContextTypeDifferentialInfoEEEPNS_12IRStructTypeESB_E9FieldInfoNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 6 | { | 617 | 6 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 6 | } |
slang-ir-call-graph.cpp:_ZN5Slang4ListIZNS_29buildEntryPointReferenceGraphERNS_10DictionaryIPNS_6IRInstENS_7HashSetIPNS_6IRFuncEEENS_4HashIS3_EESt8equal_toIS3_EEEPNS_8IRModuleEE8WorkItemNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 435 | { | 617 | 435 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 435 | } |
_ZN5Slang4ListINS_19IRCloningOldNewPairENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 8.87k | { | 617 | 8.87k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 8.87k | } |
_ZN5Slang4ListIPNS_23IRStructFieldLayoutAttrENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 80 | { | 617 | 80 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 80 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_27RegisterReplacementWorkItemENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_12IRSpecializeENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIZNS_16DllExportContext13processModuleEvE9CandidateNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_31DominatorTreeComputationContext9BlockInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 22.2k | { | 617 | 22.2k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 22.2k | } |
_ZN5Slang4ListINS_15IRDominatorTree4NodeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 16.2k | { | 617 | 16.2k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 16.2k | } |
_ZN5Slang4ListINS_6RefPtrINS_31EliminateMultiLevelBreakContext19BreakableRegionInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 195 | { | 617 | 195 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 195 | } |
_ZN5Slang4ListINS_31EliminateMultiLevelBreakContext20MultiLevelBranchInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 14 | { | 617 | 14 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 14 | } |
_ZN5Slang4ListINS_21PhiEliminationContext7PhiInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 70 | { | 617 | 70 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 70 | } |
_ZN5Slang4ListIPNS_15IRVarOffsetAttrENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 48 | { | 617 | 48 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 48 | } |
_ZN5Slang4ListIPNS_11IRGlobalVarENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_34IntroduceExplicitGlobalContextPass15GlobalParamInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 113 | { | 617 | 113 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 113 | } |
_ZN5Slang4ListIPNS_6IRCallENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 10.1k | { | 617 | 10.1k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 10.1k | } |
_ZN5Slang4ListINS_44MoveGlobalVarInitializationToEntryPointsPass13GlobalVarInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
slang-ir-glsl-legalize.cpp:_ZN5Slang4ListIZNS_L23legalizeMeshOutputParamEPNS_23GLSLLegalizationContextEPNS_14CodeGenContextEPNS_6IRFuncEPNS_7IRParamEPNS_11IRVarLayoutEPNS_16IRMeshOutputTypeEE17BuiltinOutputInfoNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_22ScalarizedTupleValImpl7ElementENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 44 | { | 617 | 44 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 44 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_22IRTargetBuiltinVarNameEPNS_6IRInstEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17IRLiveRangeMarkerENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRDebugInlinedAtENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_8IRReturnENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 11 | { | 617 | 11 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 11 | } |
_ZN5Slang4ListINS_14TuplePseudoVal7ElementENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 122 | { | 617 | 122 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 122 | } |
_ZN5Slang4ListINS_15TuplePseudoType7ElementENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 46 | { | 617 | 46 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 46 | } |
_ZN5Slang4ListINS_8LegalValENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 31 | { | 617 | 31 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 31 | } |
_ZN5Slang4ListINS_31LegalizeShaderEntryPointContext29SystemValLegalizationWorkItemENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 6 | { | 617 | 6 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 6 | } |
_ZN5Slang4ListIPNS_20IRSemanticDecorationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_15IRVarOffsetAttrEEENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_31LegalizeShaderEntryPointContext19AttributeParentPairINS_18IRUserSemanticAttrEEENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_6RefPtrINS_21WitnessTableCloneInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 196 | { | 617 | 196 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 196 | } |
_ZN5Slang4ListIPNS_8IRModuleENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 988 | { | 617 | 988 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 988 | } |
_ZN5Slang4ListINS_12KeyValuePairIPNS_6IRInstES3_EENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 71 | { | 617 | 71 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 71 | } |
_ZN5Slang4ListIPNS_5IRVarENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 846 | { | 617 | 846 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 846 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_16IRLiveRangeStartENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListIZNS_12_GLOBAL__N_115LivenessContext34_orderRangeStartsDeterministicallyEvE5EntryNS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext14FixedBlockInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext9BlockInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext10BlockIndexENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-liveness.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_115LivenessContext11BlockResultENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14IRLiveRangeEndENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIZNS_25LoweredElementTypeContext13processModuleEPNS_8IRModuleEE14BufferTypeInfoNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 127 | { | 617 | 127 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 127 | } |
_ZN5Slang4ListINS_22LoweredElementTypeInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 235 | { | 617 | 235 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 235 | } |
_ZN5Slang4ListIPNS_26IRCastStorageToLogicalBaseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 89 | { | 617 | 89 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 89 | } |
_ZN5Slang4ListINS_22LoweredBuiltinTypeInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_7IRDeferENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_10IRFuncTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 511 | { | 617 | 511 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 511 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_26GenericCallLoweringContext22ArgumentUnpackWorkItemENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_9ParamInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS_18ShaderBindingRangeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 117 | { | 617 | 117 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 117 | } |
_ZN5Slang4ListINS_14EntryPointInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 23 | { | 617 | 23 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 23 | } |
Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_111InstWithLocENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: slang-ir-obfuscate-loc.cpp:_ZN5Slang4ListINS_12_GLOBAL__N_17LocPairENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_20IRNameHintDecorationENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_7UIntSetENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.44k | { | 617 | 1.44k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.44k | } |
_ZN5Slang4ListINS_6RefPtrINS_12SwitchRegion4CaseEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
slang-ir-simplify-cfg.cpp:_ZN5Slang4ListIZNS_L22removeTrivialPhiParamsEPNS_7IRBlockEE10ParamStateNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 41.7k | { | 617 | 41.7k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 41.7k | } |
_ZN5Slang4ListIPNS_21IRUnconditionalBranchENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 41.7k | { | 617 | 41.7k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 41.7k | } |
_ZN5Slang4ListINS_12AddressSpaceENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 4.47k | { | 617 | 4.47k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4.47k | } |
_ZN5Slang4ListIPNS_6IRAttrENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7.15k | { | 617 | 7.15k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7.15k | } |
_ZN5Slang4ListIPNS_12IRMatrixTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 12 | { | 617 | 12 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 12 | } |
_ZN5Slang4ListIPNS_7IRStoreENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 6 | { | 617 | 6 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 6 | } |
_ZN5Slang4ListINS_32ResourceOutputSpecializationPass9ParamInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 6 | { | 617 | 6 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 6 | } |
_ZN5Slang4ListIZNS_24SPIRVLegalizationContext26insertLoadAtLatestLocationEPNS_6IRInstEPNS_5IRUseENS_12AddressSpaceEE8WorkItemNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 25 | { | 617 | 25 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 25 | } |
Unexecuted instantiation: _ZN5Slang4ListIZNS_24SPIRVLegalizationContext11processCallEPNS_6IRCallEE13WriteBackPairNS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_30IRHLSLStructuredBufferTypeBaseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 34 | { | 617 | 34 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 34 | } |
_ZN5Slang4ListIPNS_13IRGlobalParamENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 52 | { | 617 | 52 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 52 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet10ASMOperandENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet11ASMConstantENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_10SpvSnippet7ASMInstENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIZNS_23RegisterAllocateContext17allocateRegistersEPNS_21IRGlobalValueWithCodeERNS_6RefPtrINS_15IRDominatorTreeEEEE13WorkStackItemNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 134 | { | 617 | 134 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 134 | } |
_ZN5Slang4ListINS_6RefPtrINS_12RegisterInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 160 | { | 617 | 160 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 160 | } |
_ZN5Slang4ListINS_6IREdgeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 170 | { | 617 | 170 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 170 | } |
_ZN5Slang4ListIPNS_7PhiInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.83k | { | 617 | 1.83k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.83k | } |
_ZN5Slang4ListINS_5IRUseENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 9.53k | { | 617 | 9.53k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 9.53k | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_15IRGetStringHashENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_34GenerateWitnessTableWrapperContext20ArgumentPackWorkItemENS_17StandardAllocatorEE9_allocateEl slang-ir-wrap-cbuffer-element.cpp:_ZN5Slang4ListIZNS_19wrapCBufferElementsEPNS_8IRModuleEPNS_24WrapCBufferElementPolicyEE8WorkItemNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
slang-ir.cpp:_ZN5Slang4ListIZNS_L20_replaceInstUsesWithEPNS_6IRInstES2_E8WorkItemNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 98.0k | { | 617 | 98.0k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 98.0k | } |
_ZN5Slang4ListIPNS_10SyntaxNodeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 183 | { | 617 | 183 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 183 | } |
_ZN5Slang4ListINS_15ASTLookupResultENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 96 | { | 617 | 96 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 96 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_9TextRangeENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_4EditENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol22TextEditCompletionItemENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_22LanguageServerProtocol14CompletionItemENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 90 | { | 617 | 90 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 90 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol14DocumentSymbolENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol9InlayHintENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8TextEditENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_13SemanticTokenENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_22LanguageServerProtocol20ParameterInformationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 66 | { | 617 | 66 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 66 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol20SignatureInformationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 15 | { | 617 | 15 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 15 | } |
_ZN5Slang4ListINS_22LanguageServerProtocol15WorkspaceFolderENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 96 | { | 617 | 96 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 96 | } |
_ZN5Slang4ListINS_3URIENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 96 | { | 617 | 96 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 96 | } |
Unexecuted instantiation: slang-language-server.cpp:_ZN5Slang4ListIZNS_18LanguageServerCore14gotoDefinitionERKNS_22LanguageServerProtocol16DefinitionParamsEE14LocationResultNS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol8LocationENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol10DiagnosticENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_22LanguageServerProtocol28DiagnosticRelatedInformationENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 10 | { | 617 | 10 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 10 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol17ConfigurationItemENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol12RegistrationENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_22LanguageServerProtocol30TextDocumentContentChangeEventENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_7CommandENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_16TupleTypeBuilder15OrdinaryElementENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 581 | { | 617 | 581 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 581 | } |
_ZN5Slang4ListINS_8PairInfo7ElementENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 591 | { | 617 | 591 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 591 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28TupleLegalElementWrappingObj7ElementENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_25IRTypeLegalizationContext12PointerValueENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 385 | { | 617 | 385 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 385 | } |
_ZN5Slang4ListIPNS_10EntryPointENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 390 | { | 617 | 390 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 390 | } |
_ZN5Slang4ListIPNS_13ComponentTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_13ComponentType18SpecializationInfoEEENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_10SourceFileENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3.10k | { | 617 | 3.10k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3.10k | } |
_ZN5Slang4ListINS_6RefPtrINS_17ExtendedValueInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 150 | { | 617 | 150 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 150 | } |
_ZN5Slang4ListINS_16OutArgumentFixupENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_23IRLoweringParameterInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 20.3k | { | 617 | 20.3k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 20.3k | } |
_ZN5Slang4ListINS_6RefPtrINS_10EntryPointEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 233 | { | 617 | 233 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 233 | } |
_ZN5Slang4ListINS_9NameValueENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 81 | { | 617 | 81 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 81 | } |
_ZN5Slang4ListINS_13OptionsParser18RawTranslationUnitENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 246 | { | 617 | 246 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 246 | } |
_ZN5Slang4ListINS_13OptionsParser9RawOutputENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 150 | { | 617 | 150 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 150 | } |
_ZN5Slang4ListINS_13OptionsParser9RawTargetENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 219 | { | 617 | 219 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 219 | } |
_ZN5Slang4ListINS_13OptionsParser13RawEntryPointENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 140 | { | 617 | 140 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 140 | } |
_ZN5Slang4ListIPKcNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 544 | { | 617 | 544 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 544 | } |
_ZN5Slang4ListINS_6RefPtrINS_16EntryPointLayoutEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 381 | { | 617 | 381 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 381 | } |
_ZN5Slang4ListINS_6RefPtrINS_9VarLayoutEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 849 | { | 617 | 849 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 849 | } |
_ZN5Slang4ListINS_9UsedRangeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 757 | { | 617 | 757 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 757 | } |
_ZN5Slang4ListINS_6RefPtrINS_13ParameterInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 302 | { | 617 | 302 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 302 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_17NVAPISlotModifierENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_6RefPtrINS_25SpecializationParamLayoutEEENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPNS_14TargetCaseStmtENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_7TypeExpENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_12SPIRVAsmInstENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_13NamespaceDeclENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_32MacroInvocationContentAssistInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_12preprocessor15WarningTimeline5EntryENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfo5ParamENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_32MacroDefinitionContentAssistInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 50 | { | 617 | 50 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 50 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_28FileIncludeContentAssistInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_12preprocessor15MacroDefinition5ParamENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 4 | { | 617 | 4 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4 | } |
_ZN5Slang4ListINS_12preprocessor15MacroInvocation3ArgENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 10 | { | 617 | 10 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 10 | } |
_ZN5Slang4ListINS_12preprocessor15MacroDefinition2OpENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.49k | { | 617 | 2.49k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.49k | } |
_ZN5Slang4ListINS_6RefPtrINS_10TypeLayout12ExtendedInfo17DescriptorSetInfoEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 51 | { | 617 | 51 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 51 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo19DescriptorRangeInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 51 | { | 617 | 51 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 51 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo16BindingRangeInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 51 | { | 617 | 51 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 51 | } |
_ZN5Slang4ListINS_10TypeLayout12ExtendedInfo18SubObjectRangeInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 49 | { | 617 | 49 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 49 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_11Offset32PtrINS_9ReproUtil9FileStateEEENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_12KeyValuePairINS_6StringEjEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 11 | { | 617 | 11 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 11 | } |
_ZN5Slang4ListINS_12KeyValuePairINS_6StringEPNS_4DeclEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 4 | { | 617 | 4 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 4 | } |
_ZN5Slang4ListINS_17CapabilitySetInfo5EntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 102k | { | 617 | 102k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 102k | } |
_ZN5Slang4ListIPNS_6Fossil12SerialWriter20FossilizedObjectInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 10 | { | 617 | 10 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 10 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter11VariantInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 10 | { | 617 | 10 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 10 | } |
_ZN5Slang4ListINS_6Fossil12SerialWriter5StateENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 7 | { | 617 | 7 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 7 | } |
_ZN5Slang4ListINS_6Fossil12SerialReader14DeferredActionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 184 | { | 617 | 184 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 184 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_12IRSerialData4InstENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_13InstAllocInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 704 | { | 617 | 704 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 704 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialWriter10ObjectInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader14DeferredActionENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_16RIFFSerialReader10ObjectInfoENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_4RIFF21BoundsCheckedChunkPtrENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_19SerialSourceLocData8LineInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 5.31k | { | 617 | 5.31k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 5.31k | } |
_ZN5Slang4ListINS_19SerialSourceLocData16AdjustedLineInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 117 | { | 617 | 117 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 117 | } |
_ZN5Slang4ListINS_19SerialSourceLocData10SourceInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 48 | { | 617 | 48 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 48 | } |
_ZN5Slang4ListINS_21SerialSourceLocReader4ViewENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 48 | { | 617 | 48 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 48 | } |
_ZN5Slang4ListIcNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 8.78k | { | 617 | 8.78k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 8.78k | } |
_ZN5Slang4ListINS_15StringSlicePool6HandleENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 60 | { | 617 | 60 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 60 | } |
_ZN5Slang4ListINS_6RefPtrINS_13TargetRequestEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 324 | { | 617 | 324 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 324 | } |
_ZN5Slang4ListINS_14VMFunctionViewENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS_10StackFrameENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS0_IhNS_17StandardAllocatorEEES1_E9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListIPKvNS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_18ExecutableFunctionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_32OwnedPreprocessorMacroDefinitionENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIN5slang21PreprocessorMacroDescENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 413 | { | 617 | 413 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 413 | } |
_ZN5Slang4ListINS0_IlNS_17StandardAllocatorEEES1_E9_allocateEl Line | Count | Source | 616 | 130 | { | 617 | 130 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 130 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrIN11SlangRecord22IComponentTypeRecorderEEENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_6ComPtrIN11SlangRecord19IEntryPointRecorderEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListINS_6ComPtrIN11SlangRecord15IModuleRecorderEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1 | { | 617 | 1 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1 | } |
_ZN5Slang4ListIPN5slang14IComponentTypeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 417 | { | 617 | 417 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 417 | } |
_ZN5Slang4ListINS_14CommandOptions6OptionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 189 | { | 617 | 189 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 189 | } |
_ZN5Slang4ListINS_14CommandOptions8CategoryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 54 | { | 617 | 54 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 54 | } |
_ZN5Slang4ListINS_10HTTPHeader4PairENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 63 | { | 617 | 63 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 63 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_13SlangProfiler11ProfileInfoENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPKNS_18FixedArrayRttiInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2 | { | 617 | 2 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2 | } |
_ZN5Slang4ListINS_15SemanticVersionENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 158 | { | 617 | 158 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 158 | } |
_ZN5Slang4ListINS_4Misc5TokenENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.18k | { | 617 | 1.18k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.18k | } |
_ZN5Slang4ListINS_18ArtifactDiagnosticENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 276 | { | 617 | 276 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 276 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_23ArtifactContainerWriter5EntryENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_18FileSystemContents5EntryENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_6ComPtrI14ISlangCastableEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.03k | { | 617 | 2.03k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.03k | } |
_ZN5Slang4ListINS_14DownstreamArgs5EntryENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 1.90k | { | 617 | 1.90k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 1.90k | } |
_ZN5Slang4ListIPKNS_14DiagnosticInfoENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 9 | { | 617 | 9 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 9 | } |
_ZN5Slang4ListINS_16MarkupVisibilityENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 26 | { | 617 | 26 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 26 | } |
slang-doc-extractor.cpp:_ZN5Slang4ListIZNS_18DocMarkupExtractor7extractEPKNS1_15SearchItemInputElPNS_13SourceManagerEPNS_14DiagnosticSinkERNS0_IPNS_10SourceViewENS_17StandardAllocatorEEERNS0_INS1_16SearchItemOutputESB_EEE5EntrySB_E9_allocateEl Line | Count | Source | 616 | 28 | { | 617 | 28 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 28 | } |
_ZN5Slang4ListINS_18DocMarkupExtractor16SearchItemOutputENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 28 | { | 617 | 28 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 28 | } |
Unexecuted instantiation: _ZN5Slang4ListINS_22DownstreamCompilerDescENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListIPNS_19IDownstreamCompilerENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 336 | { | 617 | 336 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 336 | } |
_ZN5Slang4ListINS_6ComPtrI19ISlangSharedLibraryEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 20 | { | 617 | 20 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 20 | } |
_ZN5Slang4ListINS_6ComPtrINS_19IDownstreamCompilerEEENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 21 | { | 617 | 21 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 21 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_9IArtifactENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_8OSStringENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListIPKwNS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_6ComPtrI10ISlangBlobEENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_12JSONKeyValueENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 18.3k | { | 617 | 18.3k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 18.3k | } |
_ZN5Slang4ListINS_9JSONValueENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 8.25k | { | 617 | 8.25k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 8.25k | } |
_ZN5Slang4ListINS_14StructRttiInfo5FieldENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 2.37k | { | 617 | 2.37k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 2.37k | } |
_ZN5Slang4ListINS_13JSONContainer5RangeENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 283 | { | 617 | 283 | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 283 | } |
_ZN5Slang4ListINS_11JSONBuilder5StateENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3.06k | { | 617 | 3.06k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3.06k | } |
Unexecuted instantiation: slang-nvrtc-compiler.cpp:_ZN5Slang4ListIZNS_23NVRTCDownstreamCompiler21_findOptixIncludePathERNS_6StringEE12OptixHeadersNS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_16NVRTCPathVisitor9CandidateENS_17StandardAllocatorEE9_allocateEl Unexecuted instantiation: _ZN5Slang4ListINS_20SPIRVCoreGrammarInfo11OperandKindENS_17StandardAllocatorEE9_allocateEl _ZN5Slang4ListINS_10JSONWriter5StateENS_17StandardAllocatorEE9_allocateEl Line | Count | Source | 616 | 3.03k | { | 617 | 3.03k | return AllocateMethod<T, TAllocator>::allocateArray(count); | 618 | 3.03k | } |
|
619 | | static void _free(T* buffer, Index count) |
620 | | { |
621 | | return AllocateMethod<T, TAllocator>::deallocateArray(buffer, count); |
622 | | } |
623 | | |
624 | | template<typename... Args> |
625 | | void _init(const T& val, Args... args) |
626 | 6.27k | { |
627 | 6.27k | add(val); |
628 | 6.27k | _init(args...); |
629 | 6.27k | } _ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE5_initIJEEEvRKS1_DpT_ Line | Count | Source | 626 | 2.34k | { | 627 | 2.34k | add(val); | 628 | 2.34k | _init(args...); | 629 | 2.34k | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE5_initIJS1_EEEvRKS1_DpT_ Line | Count | Source | 626 | 3 | { | 627 | 3 | add(val); | 628 | 3 | _init(args...); | 629 | 3 | } |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE5_initIJEEEvRKS1_DpT_ Line | Count | Source | 626 | 3 | { | 627 | 3 | add(val); | 628 | 3 | _init(args...); | 629 | 3 | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE5_initIJEEEvRKjDpT_ Line | Count | Source | 626 | 3.22k | { | 627 | 3.22k | add(val); | 628 | 3.22k | _init(args...); | 629 | 3.22k | } |
_ZN5Slang4ListIjNS_17StandardAllocatorEE5_initIJjEEEvRKjDpT_ Line | Count | Source | 626 | 10 | { | 627 | 10 | add(val); | 628 | 10 | _init(args...); | 629 | 10 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE5_initIJS1_EEEvRKS1_DpT_ Line | Count | Source | 626 | 4 | { | 627 | 4 | add(val); | 628 | 4 | _init(args...); | 629 | 4 | } |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE5_initIJEEEvRKS1_DpT_ Line | Count | Source | 626 | 4 | { | 627 | 4 | add(val); | 628 | 4 | _init(args...); | 629 | 4 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5_initIJS1_EEEvRKS1_DpT_ Line | Count | Source | 626 | 4 | { | 627 | 4 | add(val); | 628 | 4 | _init(args...); | 629 | 4 | } |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5_initIJEEEvRKS1_DpT_ Line | Count | Source | 626 | 4 | { | 627 | 4 | add(val); | 628 | 4 | _init(args...); | 629 | 4 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5_initIJEEEvRKS2_DpT_ Line | Count | Source | 626 | 140 | { | 627 | 140 | add(val); | 628 | 140 | _init(args...); | 629 | 140 | } |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5_initIJS2_EEEvRKS2_DpT_ Line | Count | Source | 626 | 62 | { | 627 | 62 | add(val); | 628 | 62 | _init(args...); | 629 | 62 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJS2_S2_EEEvRKS2_DpT_ Line | Count | Source | 626 | 2 | { | 627 | 2 | add(val); | 628 | 2 | _init(args...); | 629 | 2 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJS2_EEEvRKS2_DpT_ Line | Count | Source | 626 | 153 | { | 627 | 153 | add(val); | 628 | 153 | _init(args...); | 629 | 153 | } |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJEEEvRKS2_DpT_ Line | Count | Source | 626 | 155 | { | 627 | 155 | add(val); | 628 | 155 | _init(args...); | 629 | 155 | } |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE5_initIJEEEvRKS1_DpT_ Line | Count | Source | 626 | 23 | { | 627 | 23 | add(val); | 628 | 23 | _init(args...); | 629 | 23 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE5_initIJS2_EEEvRKS2_DpT_ Line | Count | Source | 626 | 15 | { | 627 | 15 | add(val); | 628 | 15 | _init(args...); | 629 | 15 | } |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE5_initIJEEEvRKS2_DpT_ Line | Count | Source | 626 | 108 | { | 627 | 108 | add(val); | 628 | 108 | _init(args...); | 629 | 108 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJEEEvRKS2_DpT_ Line | Count | Source | 626 | 16 | { | 627 | 16 | add(val); | 628 | 16 | _init(args...); | 629 | 16 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJS2_EEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJPNS_7IRParamEEEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_15IRInterfaceTypeEEEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJPNS_6IRTypeEPNS_11IRTupleTypeEEEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJPNS_11IRTupleTypeEEEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_9IRIntTypeEEEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJPNS_6IRFuncES2_S2_S2_S2_EEEvRKS2_DpT_ Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJS2_S2_S2_S2_EEEvRKS2_DpT_ _ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initIJS2_S2_S2_EEEvRKS2_DpT_ Line | Count | Source | 626 | 1 | { | 627 | 1 | add(val); | 628 | 1 | _init(args...); | 629 | 1 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_17IRTargetTupleTypeEPNS_18IRNativeStringTypeES9_EEEvRKS2_DpT_ Line | Count | Source | 626 | 1 | { | 627 | 1 | add(val); | 628 | 1 | _init(args...); | 629 | 1 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_18IRNativeStringTypeES7_EEEvRKS2_DpT_ Line | Count | Source | 626 | 1 | { | 627 | 1 | add(val); | 628 | 1 | _init(args...); | 629 | 1 | } |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_18IRNativeStringTypeEEEEvRKS2_DpT_ Line | Count | Source | 626 | 1 | { | 627 | 1 | add(val); | 628 | 1 | _init(args...); | 629 | 1 | } |
Unexecuted instantiation: _ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initIJPNS_17IRTargetTupleTypeEEEEvRKS2_DpT_ |
630 | | |
631 | 6.01k | void _init() {}_ZN5Slang4ListINS_19CompilerOptionValueENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 2.34k | void _init() {} |
_ZN5Slang4ListINS_14CapabilityNameENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 3 | void _init() {} |
_ZN5Slang4ListIjNS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 3.22k | void _init() {} |
_ZN5Slang4ListI14SpvCapability_NS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 4 | void _init() {} |
_ZN5Slang4ListINS_18UnownedStringSliceENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 4 | void _init() {} |
_ZN5Slang4ListIPNS_7IRBlockENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 140 | void _init() {} |
_ZN5Slang4ListIPNS_6IRInstENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 155 | void _init() {} |
_ZN5Slang4ListINS_8UseChainENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 23 | void _init() {} |
_ZN5Slang4ListINS_17DiffTransposePass11RevGradientENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 108 | void _init() {} |
_ZN5Slang4ListIPNS_6IRTypeENS_17StandardAllocatorEE5_initEv Line | Count | Source | 631 | 16 | void _init() {} |
|
632 | | }; |
633 | | |
634 | | template<typename T> |
635 | | T calcMin(const List<T>& list) |
636 | | { |
637 | | T minVal = list.getFirst(); |
638 | | for (Index i = 1; i < list.getCount(); i++) |
639 | | if (list[i] < minVal) |
640 | | minVal = list[i]; |
641 | | return minVal; |
642 | | } |
643 | | |
644 | | template<typename T> |
645 | | T calcMax(const List<T>& list) |
646 | | { |
647 | | T maxVal = list.getFirst(); |
648 | | for (Index i = 1; i < list.getCount(); i++) |
649 | | if (list[i] > maxVal) |
650 | | maxVal = list[i]; |
651 | | return maxVal; |
652 | | } |
653 | | } // namespace Slang |
654 | | |
655 | | #endif |